add SQLT dep if DBICTEST_SQLT_DEPLOY env is set
[dbsrgits/DBIx-Class.git] / Makefile.PL
index 28d5dac..78e5bdf 100644 (file)
@@ -58,6 +58,7 @@ my $runtime_requires = {
   'Data::Dumper::Concise'    => '2.020',
   'Data::Page'               => '2.00',
   'Hash::Merge'              => '0.12',
+  'Moo'                      => '0.009013',
   'MRO::Compat'              => '0.09',
   'Module::Find'             => '0.06',
   'namespace::clean'         => '0.20',
@@ -89,6 +90,17 @@ my $test_requires = {
   'Package::Stash'           => '0.28',
 };
 
+# make strictures.pm happy (DO NOT LIKE, TOO MUCH XS!)
+# (i.e. what if the .git/.svn is *not* because of DBIC?)
+#
+# Note - this is added as test_requires *directly*, so it gets properly
+# excluded on META.yml cleansing
+if (-e '.git' or -e '.svn') {
+  test_requires 'indirect'              => '0.25';
+  test_requires 'multidimensional'      => '0.008';
+  test_requires 'bareword::filehandles' => '0.003';
+}
+
 # Bail out on parallel testing
 if (
   ($ENV{HARNESS_OPTIONS}||'') =~ / (?: ^ | \: ) j(\d+) /x
@@ -154,6 +166,18 @@ nonauthor_stop_distdir_creation:
 \t\$(NOECHO) \$(ECHO) Creation of dists in non-author mode is not allowed
 \t\$(NOECHO) \$(FALSE)
 EOP
+
+  # if the user has this env var set and no SQLT installed, tests will fail
+  # same rationale for direct test_requires as the strictures stuff above
+  # (even though no dist will be created from this)
+  if ($ENV{DBICTEST_SQLT_DEPLOY}) {
+    local @INC = ('lib', @INC);
+    require DBIx::Class::Optional::Dependencies;
+    my $dep_req = DBIx::Class::Optional::Dependencies->req_list_for('deploy');
+    for (keys %$dep_req) {
+      test_requires ($_ => $dep_req->{$_})
+    }
+  }
 }
 
 # compose final req list, for alphabetical ordering