Sha256: 1815f56aa3d2fe5a1d8b666d5eb3596e8ed6af76cf1793e986815c22bbc3cd28

Contents?: true

Size: 383 Bytes

Versions: 12

Compression:

Stored size: 383 Bytes

Contents

FactoryGirl.define do
  factory :basket do
    name "MyString"
  end
end

FactoryGirl.define do
  factory :fruit_basket do
    fruit
    basket
  end
end

FactoryGirl.define do
  factory :fruit do
    name "MyString"
    region
  end
end

FactoryGirl.define do
  factory :region do
    name "MyString"
  end
end

FactoryGirl.define do
  factory :type do
    name "MyString"
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
connection_manager-0.2.6 spec/factories.rb
connection_manager-0.2.5 spec/factories.rb
connection_manager-0.2.4 spec/factories.rb
connection_manager-0.2.3 spec/factories.rb
connection_manager-0.2.2 spec/factories.rb
connection_manager-0.2.1 spec/factories.rb
connection_manager-0.2.0 spec/factories.rb
connection_manager-0.1.4 spec/factories.rb
connection_manager-0.1.3 spec/factories.rb
connection_manager-0.1.2 spec/factories.rb
connection_manager-0.1.1 spec/factories.rb
connection_manager-0.1.0 spec/factories.rb