From 45e4fda71945954b4723ee97cbe409215abff7fc Mon Sep 17 00:00:00 2001 From: franck cuny Date: Tue, 24 Nov 2009 11:47:05 +0100 Subject: basic ideas --- lib/MooseX/Net/API/Test.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/MooseX/Net/API/Test.pm (limited to 'lib/MooseX/Net/API/Test.pm') 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; -- cgit 1.4.1