blob: 3ab5dcc49ccd0b19027c9260ef9fe6b031d30e58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
use strict;
use warnings;
use Test::More;
use Test::Exception;
package test::api::missing_api_base_url;
use MooseX::Net::API;
net_api_method user => (method => 'GET', path => '/user/');
package main;
ok my $t = test::api::missing_api_base_url->new;
dies_ok { $t->user } 'die with missing url';
like $@, qr/'api_base_url' have not been defined/, 'missing api_base_url';
done_testing;
|