diff options
| author | franck cuny <franck@lumberjaph.net> | 2010-06-09 18:19:38 +0200 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2010-06-09 18:19:38 +0200 |
| commit | 5b2042053577cc6381c40c4fb5d5264e79a0312d (patch) | |
| tree | 643da7415c478ee5e444231690fe8cd91329b75c /t/10_basic.t | |
| parent | a simple worker; a role for the REST interface to presque; reg signals (diff) | |
| download | presque-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.t | 13 |
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 |
