Sha256: 612506d4b7128bb8aae8596942103736fa91e81e60075c09649dd5605135ad0c

Contents?: true

Size: 285 Bytes

Versions: 5

Compression:

Stored size: 285 Bytes

Contents

Cheese = Struct.new(:id, :flavor, :fat_content, :source)
CHEESES = {
  1 => Cheese.new(1, "Brie", 0.19, 1),
  2 => Cheese.new(2, "Gouda", 0.3, 1),
  3 => Cheese.new(3, "Manchego", 0.065, "SHEEP")
}

Milk = Struct.new(:id, :fatContent, :source)
MILKS = {
  1 => Milk.new(1, 0.04, 1),
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
graphql-0.7.0 spec/support/dairy_data.rb
graphql-0.6.2 spec/support/dairy_data.rb
graphql-0.6.1 spec/support/dairy_data.rb
graphql-0.6.0 spec/support/dairy_data.rb
graphql-0.5.0 spec/support/dairy_data.rb