blob: 07691dc609110a25553d8312f3a3c1082a15646b (
plain) (
tree)
|
|
use strict;
use warnings;
use Test::More;
use Net::HTTP::Spore;
my $api_with_payload = {
base_url => 'foo',
methods => {
create_user => {
method => 'POST',
path => '/user',
payload_required => 1,
}
}
};
|