File Coverage

blib/lib/Faker/Plugin/InternetIpAddressV4.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 20 20 100.0


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