Skip to content

Commit

Permalink
missing templates only raise Errno::ENOENT
Browse files Browse the repository at this point in the history
plus that did not work anyways
  • Loading branch information
rkh committed Apr 13, 2011
1 parent a735e34 commit e2fc4b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/coffee_test.rb
Expand Up @@ -65,7 +65,7 @@ def coffee_app(options = {}, &block)
mock_app {
get('/') { coffee :no_such_template }
}
assert_raise(Errno::ENOENT, ArgumentError) { get('/') }
assert_raise(Errno::ENOENT) { get('/') }
end

it "passes coffee options to the coffee engine" do
Expand Down

0 comments on commit e2fc4b5

Please sign in to comment.