Merge branch 'master' into topic/constructor_rewrite
[dbsrgits/DBIx-Class.git] / t / lib / ViewDepsBad.pm
diff --git a/t/lib/ViewDepsBad.pm b/t/lib/ViewDepsBad.pm
new file mode 100644 (file)
index 0000000..9b5be12
--- /dev/null
@@ -0,0 +1,16 @@
+package    # hide from PAUSE
+    ViewDepsBad;
+## Used in 105view_deps.t
+
+use strict;
+use warnings;
+use base 'DBIx::Class::Schema';
+
+__PACKAGE__->load_namespaces;
+
+sub sqlt_deploy_hook {
+    my $self = shift;
+    $self->{sqlt} = shift;
+}
+
+1;