Sha256: 50a9b3e11fdbfe2adb1594a1bd12d4f8f3f63261a5d6dff0640fee1d2e9a54cd
Contents?: true
Size: 257 Bytes
Versions: 11
Compression:
Stored size: 257 Bytes
Contents
Given('there are {int} cucumbers') do |initial_count| @count = initial_count end When('I eat {int} cucumbers') do |eat_count| @count -= eat_count end Then('I should have {int} cucumbers') do |expected_count| expect(@count).to eq(expected_count) end
Version data entries
11 entries across 11 versions & 1 rubygems