Sha256: cdcd9e7684273fb400083ecc17414e9ed1cff7e02c931fcaa76e98a0a20a9d8c

Contents?: true

Size: 382 Bytes

Versions: 1

Compression:

Stored size: 382 Bytes

Contents

require 'spec_helper'

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
forgery-0.6.0 spec/forgery/personal_spec.rb