9 lines
155 B
CoffeeScript
9 lines
155 B
CoffeeScript
Flowerbox.Given /^I have a flowerbox$/, ->
|
|
@flowerbox =
|
|
plantSeed: (type) ->
|
|
@types ||= []
|
|
@types.push(type)
|
|
pick: ->
|
|
@types
|
|
|