From b0602a7143ca94a6639724fcebb3e4e4ecc29fdb Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Wed, 5 Dec 2007 01:58:08 +0100 Subject: Test Context#should.{throw,raise} darcs-hash:20071205005808-4fc50-042ef423f840f7cc0f37003112e8f95794446de0.gz --- test/spec_bacon.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/spec_bacon.rb b/test/spec_bacon.rb index 0f6e95e..2038e8a 100644 --- a/test/spec_bacon.rb +++ b/test/spec_bacon.rb @@ -199,11 +199,15 @@ describe "Bacon" do it "should have should.raise" do lambda { lambda { bla }.should.raise(NameError) }.should succeed lambda { lambda { nil }.should.raise(NameError) }.should fail + + should.raise(NameError) { bla } end it "should have should.throw" do lambda { lambda { throw :foo }.should.throw(:foo) }.should succeed lambda { lambda { :foo }.should.throw(:foo) }.should fail + + should.throw(:foo) { throw :foo } end it "should have should (>, >=, <, <=, ===)" do -- cgit 1.4.1