Created
January 13, 2015 02:35
-
-
Save dagolden/5576d1276e1ae2159432 to your computer and use it in GitHub Desktop.
Data::Fake SYNOPSIS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Data::Fake qw/Core Names Text Dates/; | |
my $hero_factory = fake_hash( | |
{ | |
name => fake_name(), | |
battlecry => fake_sentences(1), | |
birthday => fake_past_date("%Y-%m-%d"), | |
friends => fake_var_array( 3, 6, fake_name() ), | |
gender => fake_choice(qw/Male Female Other/), | |
} | |
); | |
my $hero = $hero_factory->(); | |
# { | |
# 'friends' => [ | |
# 'Finley Graeme Santos', | |
# 'Malaysia Selena Alvarez', | |
# 'Valeria Amya Herrera', | |
# 'Danica Anabel Stark' | |
# ], | |
# 'birthday' => '1975-06-22', | |
# 'battlecry' => 'Alias cumque officia molestias.', | |
# 'gender' => 'Other', | |
# 'name' => 'Gavyn Oscar Chavez' | |
# }; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment