File Coverage

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