diff options
Diffstat (limited to 'lib/MooseX/Net/API')
-rw-r--r-- | lib/MooseX/Net/API/Test.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/MooseX/Net/API/Test.pm b/lib/MooseX/Net/API/Test.pm new file mode 100644 index 0000000..2f2e428 --- /dev/null +++ b/lib/MooseX/Net/API/Test.pm @@ -0,0 +1,13 @@ +package MooseX::Net::API::Test; + +use Moose::Exporter; + +Moose::Exporter->setup_import_methods( with_caller => [qw/test_api_method/] ); + +sub test_api_method { + my $caller = shift; + my $name = shift; + my %options = @_; +} + +1; |