Sha256: 61e531cdb0cdd0a02b897992212b173e8dea91d41bd366ebbfa222a1d29b17ac

Contents?: true

Size: 572 Bytes

Versions: 1

Compression:

Stored size: 572 Bytes

Contents

#Given(/^([\w]+) slices of vegetables$/) do |vegetable_size|
# block vars
vegetable_size = "small"
# |
# V
  @vegetable_slice_size = vegetable_size.to_sym

#Given(/^a(nother)? layer of vegetables is placed in the jar$/) do |repeat|
# block vars
repeat = ""
# |
# V
  @jar ||= []
  put_vegetables_in_jar

#Given(/^then (more )?salt is added$/) do |more|
# block vars
more = ""
# |
# V
  @salt = 1
  @salt += 1 if more

#Given(/^a(nother)? layer of vegetables is placed in the jar$/) do |repeat|
# block vars
repeat = "nother"
# |
# V
  @jar ||= []
  put_vegetables_in_jar

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sauerkraut-0.0.3 test/runtest2.output