Sha256: 4df7221e98f2bd388a80fa4b4b383f62e5555fdab78e733e131aa36101d55843
Contents?: true
Size: 332 Bytes
Versions: 13
Compression:
Stored size: 332 Bytes
Contents
describe "Outer before" do before do @foo = "foo_ran" end describe "with an inner before" do before do @bah = "bah_ran" end it "should get the outer before hooks run" do @foo.should == "foo_ran" end it "should still run inner befores" do @bah.should == "bah_ran" end end end
Version data entries
13 entries across 13 versions & 1 rubygems