From 018b79dd36d054d87fdc408d38dc9ac7f1b1500d Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Sat, 3 Oct 2009 21:05:51 -0500 Subject: File extra test folders into controller, dispatch, or template --- actionpack/test/new_base/base_test.rb | 68 ----------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 actionpack/test/new_base/base_test.rb (limited to 'actionpack/test/new_base/base_test.rb') diff --git a/actionpack/test/new_base/base_test.rb b/actionpack/test/new_base/base_test.rb deleted file mode 100644 index effde324bc..0000000000 --- a/actionpack/test/new_base/base_test.rb +++ /dev/null @@ -1,68 +0,0 @@ -require 'abstract_unit' - -# Tests the controller dispatching happy path -module Dispatching - class SimpleController < ActionController::Base - def index - render :text => "success" - end - - def modify_response_body - self.response_body = "success" - end - - def modify_response_body_twice - ret = (self.response_body = "success") - self.response_body = "#{ret}!" - end - - def modify_response_headers - end - end - - class EmptyController < ActionController::Base ; end - - module Submodule - class ContainedEmptyController < ActionController::Base ; end - end - - class BaseTest < SimpleRouteCase - # :api: plugin - test "simple dispatching" do - get "/dispatching/simple/index" - - assert_body "success" - assert_status 200 - assert_content_type "text/html; charset=utf-8" - end - - # :api: plugin - test "directly modifying response body" do - get "/dispatching/simple/modify_response_body" - - assert_body "success" - end - - # :api: plugin - test "directly modifying response body twice" do - get "/dispatching/simple/modify_response_body_twice" - - assert_body "success!" - end - - test "controller path" do - assert_equal 'dispatching/empty', EmptyController.controller_path - assert_equal EmptyController.controller_path, EmptyController.new.controller_path - end - - test "namespaced controller path" do - assert_equal 'dispatching/submodule/contained_empty', Submodule::ContainedEmptyController.controller_path - assert_equal Submodule::ContainedEmptyController.controller_path, Submodule::ContainedEmptyController.new.controller_path - end - - test "controller name" do - assert_equal 'empty', EmptyController.controller_name - assert_equal 'contained_empty', Submodule::ContainedEmptyController.controller_name - end - end -end -- cgit v1.2.3