diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2017-04-03 22:23:57 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2017-04-03 22:23:57 -0300 |
commit | 9c439e653e19472c242fc0bff10e31a57b1ea45f (patch) | |
tree | 36f247003cfbe8ec29f26c492d2c794e5d621e16 /t | |
download | perl6-matrix-client-9c439e653e19472c242fc0bff10e31a57b1ea45f.tar.gz |
Initial commit
Diffstat (limited to 't')
-rw-r--r-- | t/meta.t | 6 | ||||
-rw-r--r-- | t/use.t | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/t/meta.t b/t/meta.t new file mode 100644 index 0000000..98788f2 --- /dev/null +++ b/t/meta.t @@ -0,0 +1,6 @@ +use lib 'lib'; +use Test; +use Test::META; + +meta-ok; +done-testing; @@ -0,0 +1,7 @@ +use lib 'lib'; +use Test; + +use-ok 'Matrix::Client'; +use-ok 'Matrix::Client::Room'; +use-ok 'Matrix::Client::Requester'; +done-testing; |