diff options
Diffstat (limited to 'test/functional/wiki_controller_test.rb')
-rw-r--r-- | test/functional/wiki_controller_test.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb index 3e25be08e..41f5dabdb 100644 --- a/test/functional/wiki_controller_test.rb +++ b/test/functional/wiki_controller_test.rb @@ -58,7 +58,9 @@ class WikiControllerTest < ActionController::TestCase end def test_show_old_version - get :show, :project_id => 'ecookbook', :id => 'CookBook_documentation', :version => '2' + with_settings :default_language => 'en' do + get :show, :project_id => 'ecookbook', :id => 'CookBook_documentation', :version => '2' + end assert_response :success assert_template 'show' @@ -89,7 +91,9 @@ class WikiControllerTest < ActionController::TestCase end def test_show_first_version - get :show, :project_id => 'ecookbook', :id => 'CookBook_documentation', :version => '1' + with_settings :default_language => 'en' do + get :show, :project_id => 'ecookbook', :id => 'CookBook_documentation', :version => '1' + end assert_response :success assert_template 'show' |