Line | |
---|
1 | #!/usr/bin/perl |
---|
2 | |
---|
3 | use strict; |
---|
4 | use warnings; |
---|
5 | |
---|
6 | use Test::More qw{no_plan}; |
---|
7 | |
---|
8 | main(); |
---|
9 | |
---|
10 | sub main { |
---|
11 | my ($class) = 'Fcm::Keyword::Entry::Location'; |
---|
12 | use_ok($class); |
---|
13 | test_constructor($class); |
---|
14 | } |
---|
15 | |
---|
16 | ################################################################################ |
---|
17 | # Tests constructor |
---|
18 | sub test_constructor { |
---|
19 | my ($class) = @_; |
---|
20 | my $prefix = 'constructor'; |
---|
21 | isa_ok($class->new(), $class, "$prefix: empty"); |
---|
22 | my $entry = $class->new({key => 'key', value => 'value'}); |
---|
23 | isa_ok($entry, $class, "$prefix: normal"); |
---|
24 | is($entry->get_key(), 'key', "$prefix: normal: get_key()"); |
---|
25 | is($entry->get_value(), 'value', "$prefix: normal: get_value()"); |
---|
26 | isa_ok($entry->get_revision_entries(), 'Fcm::Keyword::Entries'); |
---|
27 | } |
---|
28 | |
---|
29 | __END__ |
---|
Note: See
TracBrowser
for help on using the repository browser.