Skip to content

Instantly share code, notes, and snippets.

@dagolden
Created January 13, 2015 02:35
Show Gist options
  • Save dagolden/5576d1276e1ae2159432 to your computer and use it in GitHub Desktop.
Save dagolden/5576d1276e1ae2159432 to your computer and use it in GitHub Desktop.
Data::Fake SYNOPSIS
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