diff options
Diffstat (limited to 't/tests')
-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; |