diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-10-15 15:36:10 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-10-15 15:36:10 +0000 |
commit | 02711057943805a2c605a87f069a9fc333c6d1fb (patch) | |
tree | 2ceb185bdcc36954e0502f50c85ef9aa8ebfe5cf /test/functional/wiki_controller_test.rb | |
parent | bbbfd4ee4cf34742c1f0e18cf5709a2f59762b6b (diff) | |
download | redmine-02711057943805a2c605a87f069a9fc333c6d1fb.tar.gz redmine-02711057943805a2c605a87f069a9fc333c6d1fb.zip |
Refactor: extract #page_index from WikiController#special
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4253 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/wiki_controller_test.rb')
-rw-r--r-- | test/functional/wiki_controller_test.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb index 6b0a6cc5c..37d5b8f88 100644 --- a/test/functional/wiki_controller_test.rb +++ b/test/functional/wiki_controller_test.rb @@ -197,7 +197,7 @@ class WikiControllerTest < ActionController::TestCase def test_destroy_child @request.session[:user_id] = 2 post :destroy, :id => 1, :page => 'Child_1' - assert_redirected_to :action => 'special', :id => 'ecookbook', :page => 'Page_index' + assert_redirected_to :action => 'page_index', :id => 'ecookbook' end def test_destroy_parent @@ -214,7 +214,7 @@ class WikiControllerTest < ActionController::TestCase assert_difference('WikiPage.count', -1) do post :destroy, :id => 1, :page => 'Another_page', :todo => 'nullify' end - assert_redirected_to :action => 'special', :id => 'ecookbook', :page => 'Page_index' + assert_redirected_to :action => 'page_index', :id => 'ecookbook' assert_nil WikiPage.find_by_id(2) end @@ -223,7 +223,7 @@ class WikiControllerTest < ActionController::TestCase assert_difference('WikiPage.count', -3) do post :destroy, :id => 1, :page => 'Another_page', :todo => 'destroy' end - assert_redirected_to :action => 'special', :id => 'ecookbook', :page => 'Page_index' + assert_redirected_to :action => 'page_index', :id => 'ecookbook' assert_nil WikiPage.find_by_id(2) assert_nil WikiPage.find_by_id(5) end @@ -233,15 +233,15 @@ class WikiControllerTest < ActionController::TestCase assert_difference('WikiPage.count', -1) do post :destroy, :id => 1, :page => 'Another_page', :todo => 'reassign', :reassign_to_id => 1 end - assert_redirected_to :action => 'special', :id => 'ecookbook', :page => 'Page_index' + assert_redirected_to :action => 'page_index', :id => 'ecookbook' assert_nil WikiPage.find_by_id(2) assert_equal WikiPage.find(1), WikiPage.find_by_id(5).parent end def test_page_index - get :special, :id => 'ecookbook', :page => 'Page_index' + get :page_index, :id => 'ecookbook' assert_response :success - assert_template 'special_page_index' + assert_template 'page_index' pages = assigns(:pages) assert_not_nil pages assert_equal Project.find(1).wiki.pages.size, pages.size |