summaryrefslogtreecommitdiff
path: root/t/01basic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/01basic.t')
-rw-r--r--t/01basic.t38
1 files changed, 38 insertions, 0 deletions
diff --git a/t/01basic.t b/t/01basic.t
new file mode 100644
index 0000000..72dd3d7
--- /dev/null
+++ b/t/01basic.t
@@ -0,0 +1,38 @@
+=pod
+
+=encoding utf-8
+
+=head1 PURPOSE
+
+Very basic Exporter::Tiny test.
+
+Check that it allows us to import the functions named in C<< @EXPORT >>.
+
+=head1 AUTHOR
+
+Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
+
+=head1 COPYRIGHT AND LICENCE
+
+This software is copyright (c) 2013 by Toby Inkster.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+
+=cut
+
+use strict;
+use warnings;
+use Test::More tests => 2;
+
+use lib qw( examples ../examples );
+
+use Example::Exporter;
+
+diag("Perl $]");
+
+is fib(6), 8, 'Correctly imported "fib" from Example::Exporter';
+
+ok !__PACKAGE__->can('embiggen'), 'Did not inadvertantly import "embiggen"';
+