Sha256: 3ba4692caad32cc945c42ac8e744e1ee81299e8daf3f8502c159b890144c4911
Contents?: true
Size: 533 Bytes
Versions: 9
Compression:
Stored size: 533 Bytes
Contents
require 'rubygems' require 'coulda' include Coulda Feature "Painfully obvious" do in_order_to "demonstrate a simple test" as_a "coulda developer" i_want_to "provide a straight-forward scenario" def something_without_a_value @no_value = nil end Scenario "Describing something obvious" do Given "something without a value" do something_without_a_value end When "I give it a value" do @no_value = true end Then "it should have a value" do assert(@no_value) end end end
Version data entries
9 entries across 9 versions & 1 rubygems