Sha256: eb12559bfe9776ab84dc52aa31d5a7893e0ca9dc73dcb41cfd6410c6ff20333d

Contents?: true

Size: 394 Bytes

Versions: 7

Compression:

Stored size: 394 Bytes

Contents

@adidas = Brand.create!(name: "Adidas")
@shoe = ProductCategory.create!(name: "Shoe")
@tee = ProductCategory.create!(name: "T-shirt")

Product.create!(
  brand_id: @adidas.id,
  category_id: @shoe.id,
  name: "Gazelle OG"
)
Product.create!(
  brand_id: @adidas.id,
  category_id: @shoe.id,
  name: "Hamburg"
)
Product.create!(
  brand_id: @adidas.id,
  category_id: @tee.id,
  name: "Hamburg"
)

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
querrel-1.4.0 test/setup/fixtures.rb
querrel-1.3.0 test/setup/fixtures.rb
querrel-1.2.0 test/setup/fixtures.rb
querrel-1.1.0 test/setup/fixtures.rb
querrel-1.0.0 test/setup/fixtures.rb
hario-0.2.0 test/fixtures.rb
hario-0.1.1 test/fixtures.rb