1
0
mirror of https://github.com/askn/faker.git synced 2023-08-10 21:13:01 +03:00
faker/spec/company_spec.cr
Ricky Chilcott 6e5e8fad11 Fixing specs
2018-09-21 08:41:48 -04:00

16 lines
498 B
Crystal

require "./spec_helper"
require "http/client"
describe Faker::Company do
it "logo" do
Faker::Company.logo.match(%r{https://pigment.github.io/fake-logos/logos/medium/color/\d+\.png}).should_not eq nil
end
it "should return deterministic results when seeded" do
Faker.seed 123456
Faker::Company.name.should eq "Kemmer-Gleichner"
Faker::Company.suffix.should eq "Inc"
Faker::Company.logo.should eq "https://pigment.github.io/fake-logos/logos/medium/color/10.png"
end
end