Test for previous commit (we wrote it first, I swear)

This commit is contained in:
Yehuda Katz + Carl Lerche
2009-09-03 12:58:43 -07:00
parent 119793a4c1
commit 487ee41d2f

View File

@@ -0,0 +1,18 @@
require File.join(File.expand_path(File.dirname(__FILE__)), "test_helper")
module ContentNegotiation
# This has no layout and it works
class BasicController < ActionController::Base
self.view_paths = [ActionView::FixtureResolver.new(
"content_negotiation/basic/hello.html.erb" => "Hello world <%= request.formats %>!"
)]
end
class TestContentNegotiation < SimpleRouteCase
test "A */* Accept header will return HTML" do
get "/content_negotiation/basic/hello", {}, "HTTP_ACCEPT" => "*/*"
assert_body "Hello world */*!"
end
end
end