Test get_services(). Need to fix/update other tests.

This commit is contained in:
Daniel Nichter
2013-04-19 14:49:01 -06:00
parent c7c79945f9
commit 89db22894e
9 changed files with 432 additions and 21 deletions

View File

@@ -59,6 +59,13 @@ has 'meta' => (
default => sub { return 0 },
);
has 'run_once' => (
is => 'ro',
isa => 'Bool',
required => 0,
default => sub { return 0 },
);
has 'links' => (
is => 'rw',
isa => 'Maybe[HashRef]',

View File

@@ -40,12 +40,6 @@ has 'program' => (
required => 0,
);
has 'options' => (
is => 'ro',
isa => 'Maybe[Str]',
required => 0,
);
has 'query' => (
is => 'ro',
isa => 'Maybe[Str]',