File Coverage

blib/lib/Faker/Plugin/EnUs/AddressCityPrefix.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 2 50.0
total 21 22 95.4


line stmt bran cond sub pod time code
1             package Faker::Plugin::EnUs::AddressCityPrefix;
2              
3 4     4   22999 use 5.018;
  4         16  
4              
5 4     4   27 use strict;
  4         10  
  4         83  
6 4     4   20 use warnings;
  4         15  
  4         197  
7              
8 4     4   27 use Venus::Class 'base';
  4         12  
  4         29  
9              
10             base 'Faker::Plugin::EnUs';
11              
12             # VERSION
13              
14             our $VERSION = '1.17';
15              
16             # METHODS
17              
18             sub execute {
19 10     10 1 1123 my ($self, $data) = @_;
20              
21 10         32 return $self->faker->random->select(data_for_address_city_prefix());
22             }
23              
24             sub data_for_address_city_prefix {
25 10     10 0 51 state $address_city_prefix = [
26             'North',
27             'East',
28             'West',
29             'South',
30             'New',
31             'Lake',
32             'Port',
33             ]
34             }
35              
36             1;
37              
38              
39              
40             =head1 NAME
41              
42             Faker::Plugin::EnUs::AddressCityPrefix - Address City Prefix
43              
44             =cut
45              
46             =head1 ABSTRACT
47              
48             Address City Prefix for Faker
49              
50             =cut
51              
52             =head1 VERSION
53              
54             1.17
55              
56             =cut
57              
58             =head1 SYNOPSIS
59              
60             package main;
61              
62             use Faker::Plugin::EnUs::AddressCityPrefix;
63              
64             my $plugin = Faker::Plugin::EnUs::AddressCityPrefix->new;
65              
66             # bless(..., "Faker::Plugin::EnUs::AddressCityPrefix")
67              
68             =cut
69              
70             =head1 DESCRIPTION
71              
72             This package provides methods for generating fake data for address city prefix.
73              
74             =encoding utf8
75              
76             =cut
77              
78             =head1 INHERITS
79              
80             This package inherits behaviors from:
81              
82             L
83              
84             =cut
85              
86             =head1 METHODS
87              
88             This package provides the following methods:
89              
90             =cut
91              
92             =head2 execute
93              
94             execute(HashRef $data) (Str)
95              
96             The execute method returns a returns a random fake address city prefix.
97              
98             I>
99              
100             =over 4
101              
102             =item execute example 1
103              
104             package main;
105              
106             use Faker::Plugin::EnUs::AddressCityPrefix;
107              
108             my $plugin = Faker::Plugin::EnUs::AddressCityPrefix->new;
109              
110             # bless(..., "Faker::Plugin::EnUs::AddressCityPrefix")
111              
112             # my $result = $plugin->execute;
113              
114             # "West";
115              
116             # my $result = $plugin->execute;
117              
118             # "West";
119              
120             # my $result = $plugin->execute;
121              
122             # "Lake";
123              
124             =back
125              
126             =cut
127              
128             =head2 new
129              
130             new(HashRef $data) (Plugin)
131              
132             The new method returns a new instance of the class.
133              
134             I>
135              
136             =over 4
137              
138             =item new example 1
139              
140             package main;
141              
142             use Faker::Plugin::EnUs::AddressCityPrefix;
143              
144             my $plugin = Faker::Plugin::EnUs::AddressCityPrefix->new;
145              
146             # bless(..., "Faker::Plugin::EnUs::AddressCityPrefix")
147              
148             =back
149              
150             =cut