File Coverage

blib/lib/Faker/Plugin/SoftwareSemver.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::SoftwareSemver;
2              
3 2     2   39653 use 5.018;
  2         8  
4              
5 2     2   14 use strict;
  2         6  
  2         48  
6 2     2   13 use warnings;
  2         7  
  2         60  
7              
8 2     2   10 use Venus::Class 'base';
  2         5  
  2         15  
9              
10             base 'Faker::Plugin';
11              
12             # VERSION
13              
14             our $VERSION = '1.19';
15              
16             # METHODS
17              
18             sub execute {
19 6     6 1 2594 my ($self, $data) = @_;
20              
21 6         25 return $self->process_markers(
22             $self->faker->random->select(data_for_software_semver()),
23             'numbers',
24             );
25             }
26              
27             sub data_for_software_semver {
28 6     6 0 32 state $software_semver = [
29             '0.#.#',
30             '#.#.#',
31             '#.##.##',
32             ]
33             }
34              
35             1;
36              
37              
38              
39             =head1 NAME
40              
41             Faker::Plugin::SoftwareSemver - Software Semver
42              
43             =cut
44              
45             =head1 ABSTRACT
46              
47             Software Semver for Faker
48              
49             =cut
50              
51             =head1 VERSION
52              
53             1.19
54              
55             =cut
56              
57             =head1 SYNOPSIS
58              
59             package main;
60              
61             use Faker::Plugin::SoftwareSemver;
62              
63             my $plugin = Faker::Plugin::SoftwareSemver->new;
64              
65             # bless(..., "Faker::Plugin::SoftwareSemver")
66              
67             =cut
68              
69             =head1 DESCRIPTION
70              
71             This package provides methods for generating fake data for software semver.
72              
73             =encoding utf8
74              
75             =cut
76              
77             =head1 INHERITS
78              
79             This package inherits behaviors from:
80              
81             L
82              
83             =cut
84              
85             =head1 METHODS
86              
87             This package provides the following methods:
88              
89             =cut
90              
91             =head2 execute
92              
93             execute(HashRef $data) (Str)
94              
95             The execute method returns a returns a random fake software semver.
96              
97             I>
98              
99             =over 4
100              
101             =item execute example 1
102              
103             package main;
104              
105             use Faker::Plugin::SoftwareSemver;
106              
107             my $plugin = Faker::Plugin::SoftwareSemver->new;
108              
109             # bless(..., "Faker::Plugin::SoftwareSemver")
110              
111             # my $result = $plugin->execute;
112              
113             # "1.4.0";
114              
115             # my $result = $plugin->execute;
116              
117             # "4.6.8";
118              
119             # my $result = $plugin->execute;
120              
121             # "5.0.7";
122              
123             =back
124              
125             =cut
126              
127             =head2 new
128              
129             new(HashRef $data) (Plugin)
130              
131             The new method returns a new instance of the class.
132              
133             I>
134              
135             =over 4
136              
137             =item new example 1
138              
139             package main;
140              
141             use Faker::Plugin::SoftwareSemver;
142              
143             my $plugin = Faker::Plugin::SoftwareSemver->new;
144              
145             # bless(..., "Faker::Plugin::SoftwareSemver")
146              
147             =back
148              
149             =cut
150              
151             =head1 AUTHORS
152              
153             Awncorp, C
154              
155             =cut
156              
157             =head1 LICENSE
158              
159             Copyright (C) 2000, Al Newkirk.
160              
161             This program is free software, you can redistribute it and/or modify it under
162             the terms of the Apache license version 2.0.
163              
164             =cut