diff options
author | dakkar <dakkar@thenautilus.net> | 2016-05-27 13:49:58 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2016-05-27 13:49:58 +0100 |
commit | 15cbbf41e8838bc477d88d90c80446728b0d2591 (patch) | |
tree | 51bce5d090dbdb03fff906c948a55bfd1ceab9c9 /t | |
download | Sietima-15cbbf41e8838bc477d88d90c80446728b0d2591.tar.gz Sietima-15cbbf41e8838bc477d88d90c80446728b0d2591.tar.bz2 Sietima-15cbbf41e8838bc477d88d90c80446728b0d2591.zip |
empty start
Diffstat (limited to 't')
-rw-r--r-- | t/tests/sietima.t | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/tests/sietima.t b/t/tests/sietima.t new file mode 100644 index 0000000..217c06d --- /dev/null +++ b/t/tests/sietima.t @@ -0,0 +1,13 @@ +#!perl +use strict; +use warnings; +use 5.020; +use Test::Most; +use Sietima; + +ok( + my $s=Sietima->new, + 'should instantiate', +); + +done_testing; |