File Coverage

blib/lib/Faker/Plugin/InternetIpAddress.pm
Criterion Covered Total %
statement 13 13 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 21 21 100.0


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