summaryrefslogtreecommitdiff
path: root/t/10_basic.t
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-06-09 18:19:38 +0200
committerfranck cuny <franck@lumberjaph.net>2010-06-09 18:19:38 +0200
commit5b2042053577cc6381c40c4fb5d5264e79a0312d (patch)
tree643da7415c478ee5e444231690fe8cd91329b75c /t/10_basic.t
parenta simple worker; a role for the REST interface to presque; reg signals (diff)
downloadpresque-worker-5b2042053577cc6381c40c4fb5d5264e79a0312d.tar.gz
add logger; move some code for work and job in roles;
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