added test for check_has_column
[catagits/Catalyst-Controller-DBIC-API.git] / t / lib / TestAppCheckHasCol.pm
diff --git a/t/lib/TestAppCheckHasCol.pm b/t/lib/TestAppCheckHasCol.pm
new file mode 100644 (file)
index 0000000..5c4b101
--- /dev/null
@@ -0,0 +1,14 @@
+package TestAppCheckHasCol;
+use Moose;
+use namespace::autoclean;
+use Catalyst::Runtime 5.70;
+
+extends 'Catalyst';
+
+our $VERSION = '0.01';
+
+__PACKAGE__->config( name => __PACKAGE__ );
+
+__PACKAGE__->setup;
+
+1;