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 | |
download | Sietima-15cbbf41e8838bc477d88d90c80446728b0d2591.tar.gz Sietima-15cbbf41e8838bc477d88d90c80446728b0d2591.tar.bz2 Sietima-15cbbf41e8838bc477d88d90c80446728b0d2591.zip |
empty start
-rw-r--r-- | lib/Sietima.pm | 5 | ||||
-rw-r--r-- | t/tests/sietima.t | 13 |
2 files changed, 18 insertions, 0 deletions
diff --git a/lib/Sietima.pm b/lib/Sietima.pm new file mode 100644 index 0000000..6c3e60c --- /dev/null +++ b/lib/Sietima.pm @@ -0,0 +1,5 @@ +package Sietima; +use 5.020; +use Moo; + +1; 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; |