Sha256: 7bbdacace92afd2c9c12b8f1ee4c8d5983216a73b3603b1cdd090c603c29523b

Contents?: true

Size: 405 Bytes

Versions: 4

Compression:

Stored size: 405 Bytes

Contents

require File.dirname(__FILE__) + '/../spec_helper'

describe PersonalForgery do
  describe '.gender' do
    it 'should return male or female' do
      Forgery.dictionaries[:genders].should include(PersonalForgery.gender)
    end
  end
  
  describe '.shirt_size' do
    it 'should return a sane size' do
      Forgery.dictionaries[:shirt_sizes].should include(PersonalForgery.shirt_size)
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
sevenwire-forgery-0.2.0 spec/forgeries/personal_forgery_spec.rb
sevenwire-forgery-0.2.1 spec/forgeries/personal_forgery_spec.rb
sevenwire-forgery-0.2.2 spec/forgeries/personal_forgery_spec.rb
forgery-0.2.2 spec/forgeries/personal_forgery_spec.rb