Skip to content

Instantly share code, notes, and snippets.

@BanzaiMan
Created December 14, 2009 04:29
Show Gist options
  • Select an option

  • Save BanzaiMan/255769 to your computer and use it in GitHub Desktop.

Select an option

Save BanzaiMan/255769 to your computer and use it in GitHub Desktop.
ruby_bug "redmine #595", "1.9" do
it "executes the ensure clause" do
fib = Fiber.new{
begin
exit 0
rescue SystemExit
ensure
:ensure
end
}
fib.resume.should == :ensure
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment