class BareMetalTest::HeadController
Public Instance Methods
continue()
click to toggle source
# File actionpack/test/controller/new_base/bare_metal_test.rb, line 68 def continue self.content_type = "text/html" head 100 end
index()
click to toggle source
# File actionpack/test/controller/new_base/bare_metal_test.rb, line 64 def index head :not_found end
no_content()
click to toggle source
# File actionpack/test/controller/new_base/bare_metal_test.rb, line 83 def no_content self.content_type = "text/html" head 204 end
not_modified()
click to toggle source
# File actionpack/test/controller/new_base/bare_metal_test.rb, line 93 def not_modified self.content_type = "text/html" head 304 end
processing()
click to toggle source
# File actionpack/test/controller/new_base/bare_metal_test.rb, line 78 def processing self.content_type = "text/html" head 102 end
reset_content()
click to toggle source
# File actionpack/test/controller/new_base/bare_metal_test.rb, line 88 def reset_content self.content_type = "text/html" head 205 end
switching_protocols()
click to toggle source
# File actionpack/test/controller/new_base/bare_metal_test.rb, line 73 def switching_protocols self.content_type = "text/html" head 101 end