Sha256: cd124ab8fdc7c8f46e1763d75bb9f3dde1e7024d5365d0613dd841f2302c1057
Contents?: true
Size: 543 Bytes
Versions: 32
Compression:
Stored size: 543 Bytes
Contents
require 'spec_helper' # This was added to prove that http://rspec.lighthouseapp.com/projects/5645/tickets/211 # was fixed in ruby 1.9.1 module HelperMethodExample describe "a helper method" do def helper_method "received call" end it "is available to examples in the same group" do helper_method.should == "received call" end describe "from a nested group" do it "is available to examples in a nested group" do helper_method.should == "received call" end end end end
Version data entries
32 entries across 32 versions & 11 rubygems