mirror of
https://github.com/askn/faker.git
synced 2023-08-10 21:13:01 +03:00
9 lines
214 B
Crystal
9 lines
214 B
Crystal
require "./spec_helper"
|
|
|
|
describe Faker::PhoneNumber do
|
|
it "should return deterministic results when seeded" do
|
|
Faker.seed 123456
|
|
Faker::PhoneNumber.phone_number.should eq "894.314.4411 x20598"
|
|
end
|
|
end
|