summary refs log tree commit diff
path: root/lib/MooseX/Net/API/Test.pm
blob: 2f2e4286e09c540f91f349a60fcb5b2207bbb04f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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;