summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/spec_bacon.rb4
1 files changed, 4 insertions, 0 deletions
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 <operator> (>, >=, <, <=, ===)" do