aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/content_negotiation_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/new_base/content_negotiation_test.rb')
-rw-r--r--actionpack/test/new_base/content_negotiation_test.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/actionpack/test/new_base/content_negotiation_test.rb b/actionpack/test/new_base/content_negotiation_test.rb
deleted file mode 100644
index c43cb677f8..0000000000
--- a/actionpack/test/new_base/content_negotiation_test.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require 'abstract_unit'
-
-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