mirror of
https://github.com/askn/faker.git
synced 2023-08-10 21:13:01 +03:00
14 lines
417 B
Crystal
14 lines
417 B
Crystal
|
require "./spec_helper"
|
||
|
|
||
|
describe Faker::Name do
|
||
|
it "should return deterministic results when seeded" do
|
||
|
Faker.seed 123456
|
||
|
Faker::Name.name.should eq "Bernie Altenwerth"
|
||
|
Faker::Name.first_name.should eq "Ron"
|
||
|
Faker::Name.last_name.should eq "Block"
|
||
|
Faker::Name.prefix.should eq "Mrs."
|
||
|
Faker::Name.suffix.should eq "Sr."
|
||
|
Faker::Name.title.should eq "Product Markets Specialist"
|
||
|
end
|
||
|
end
|