diff options
author | franck cuny <franck@lumberjaph.net> | 2009-12-08 10:28:03 +0100 |
---|---|---|
committer | franck cuny <franck@lumberjaph.net> | 2009-12-08 10:28:03 +0100 |
commit | 20eca1a1c886da75a8c80a5dc8d8cdab25e83092 (patch) | |
tree | ec4be39cd3fe51c8d2e9eca2d54954a193210b38 /t/lib | |
parent | fix deserialisation (diff) | |
download | moosex-net-api-20eca1a1c886da75a8c80a5dc8d8cdab25e83092.tar.gz |
Checking in changes prior to tagging of version 0.01. Changelog diff is:
Diffstat (limited to 't/lib')
-rw-r--r-- | t/lib/FakeAPIFail.pm | 12 | ||||
-rw-r--r-- | t/lib/FakeAPIFail2.pm | 12 |
2 files changed, 10 insertions, 14 deletions
diff --git a/t/lib/FakeAPIFail.pm b/t/lib/FakeAPIFail.pm index 80f1efa..87689bc 100644 --- a/t/lib/FakeAPIFail.pm +++ b/t/lib/FakeAPIFail.pm @@ -2,15 +2,13 @@ package FakeAPI; use Moose; use MooseX::Net::API; -has api_base_url => ( - is => 'ro', - isa => 'Str', - default => 'http://identi.ca/api', +net_api_declare fake_api => ( + base_url => 'http://identi.ca/api', + format => 'json', + format_mode => 'content-type', + require_authentication => 0, ); -has format => ( is => 'ro', isa => 'Str', default => 'json', ); -format_query 'format' => ( mode => 'content-type' ); - net_api_method foo => ( description => 'this does foo', method => 'GET', diff --git a/t/lib/FakeAPIFail2.pm b/t/lib/FakeAPIFail2.pm index 8ec10c8..1d1725b 100644 --- a/t/lib/FakeAPIFail2.pm +++ b/t/lib/FakeAPIFail2.pm @@ -2,15 +2,13 @@ package FakeAPI; use Moose; use MooseX::Net::API; -has api_base_url => ( - is => 'ro', - isa => 'Str', - default => 'http://identi.ca/api', +net_api_declare fake_api => ( + base_url => 'http://identi.ca/api', + format => 'json', + format_mode => 'content-type', + require_authentication => 0, ); -has format => ( is => 'ro', isa => 'Str', default => 'json', ); -format_query 'format' => ( mode => 'content-type' ); - net_api_method baz => ( description => 'this one does baztwo', method => 'BAZ', |