summaryrefslogtreecommitdiff
path: root/t/10_basic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/10_basic.t')
-rw-r--r--t/10_basic.t13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/10_basic.t b/t/10_basic.t
new file mode 100644
index 0000000..0754f66
--- /dev/null
+++ b/t/10_basic.t
@@ -0,0 +1,13 @@
+use strict;
+use warnings;
+
+use Test::More;
+
+use presque::worker;
+
+my $w = presque::worker->new_with_traits( { traits => [qw/foo/] } );
+my $w2 = presque::worker->new();
+
+ok 1;
+
+done_testing; \ No newline at end of file