Sha256: cf8bdb4b1069b3546704c54f74dbb8fc44362295cfd3f1d777586811f9850e24

Contents?: true

Size: 1.45 KB

Versions: 16

Compression:

Stored size: 1.45 KB

Contents

require "spec_helper"

describe PagSeguro::Faker do
  it "should return city" do
    PagSeguro::Faker::CITIES.should include(PagSeguro::Faker.city)
  end

  it "should return state" do
    PagSeguro::Faker::STATES.should include(PagSeguro::Faker.state)
  end

  it "should return street name" do
    PagSeguro::Faker::STREET_TYPES.stub :sample => "Alameda"
    PagSeguro::Faker::CITIES.stub :sample => "Horizontina"
    PagSeguro::Faker.street_name.should == "Alameda Horizontina"
  end

  it "should return secondary address" do
    PagSeguro::Faker::SECONDARY_ADDRESS.stub :sample => "Apto"
    PagSeguro::Faker.stub :rand => 666
    PagSeguro::Faker.secondary_address.should == "Apto 666"
  end

  it "should return name" do
    PagSeguro::Faker::NAMES.should include(PagSeguro::Faker.name)
  end

  it "should return surname" do
    PagSeguro::Faker::SURNAMES.should include(PagSeguro::Faker.surname)
  end

  it "should return full name" do
    PagSeguro::Faker.stub :name => "John"
    PagSeguro::Faker.stub :surname => "Doe"
    PagSeguro::Faker.full_name.should == "John Doe"
  end

  it "should return email" do
    PagSeguro::Faker.stub :full_name => "John Doe"
    PagSeguro::Faker.email.should match(/john.doe@(gmail|yahoo|hotmail|uol|ig|bol)/)
  end

  it "should return phone number" do
    PagSeguro::Faker.phone_number.should match(/\(\d{2}\) \d{4}-\d{4}/)
  end

  it "should return zip code" do
    PagSeguro::Faker.zipcode.should match(/\d{5}-\d{3}/)
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
pagseguro-0.1.13 spec/pagseguro/faker_spec.rb
pagseguro-0.1.12 spec/pagseguro/faker_spec.rb
pagseguro-0.1.11 spec/pagseguro/faker_spec.rb
pagseguro-0.1.11.beta2 spec/pagseguro/faker_spec.rb
pagseguro-0.1.11.beta1 spec/pagseguro/faker_spec.rb
pagseguro-0.1.10 spec/pagseguro/faker_spec.rb
pagseguro-0.1.10.beta.0 spec/pagseguro/faker_spec.rb
pagseguro-0.1.9 spec/pagseguro/faker_spec.rb
pagseguro-0.1.9.beta.0 spec/pagseguro/faker_spec.rb
pagseguro-0.1.8 spec/pagseguro/faker_spec.rb
pagseguro-0.1.7 spec/pagseguro/faker_spec.rb
pagseguro-0.1.7.beta.1 spec/pagseguro/faker_spec.rb
pagseguro-0.1.7.beta.0 spec/pagseguro/faker_spec.rb
pagseguro-0.1.6 spec/pagseguro/faker_spec.rb
pagseguro-0.1.5 spec/pagseguro/faker_spec.rb
pagseguro-0.1.4 spec/pagseguro/faker_spec.rb