diff options
author | Akira Matsuda <ronnie@dio.jp> | 2015-09-21 03:02:11 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2015-09-21 03:17:39 +0900 |
commit | 64766e82d6b80e89eea98dfb4798ac0e40d88a59 (patch) | |
tree | 045b5cdcf4f51c03e73108ba36fa3fd3c03a0707 /actionview | |
parent | 4a4f8500a01eb66deb945a6b80d98dc7906644e4 (diff) | |
download | rails-64766e82d6b80e89eea98dfb4798ac0e40d88a59.tar.gz rails-64766e82d6b80e89eea98dfb4798ac0e40d88a59.tar.bz2 rails-64766e82d6b80e89eea98dfb4798ac0e40d88a59.zip |
:hocho: Typos
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/test/actionpack/controller/capture_test.rb | 2 | ||||
-rw-r--r-- | actionview/test/actionpack/controller/render_test.rb | 2 | ||||
-rw-r--r-- | actionview/test/template/form_helper_test.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/actionview/test/actionpack/controller/capture_test.rb b/actionview/test/actionpack/controller/capture_test.rb index f8387b27b0..933456ce9d 100644 --- a/actionview/test/actionpack/controller/capture_test.rb +++ b/actionview/test/actionpack/controller/capture_test.rb @@ -54,7 +54,7 @@ class CaptureTest < ActionController::TestCase assert_equal expected_content_for_output, @response.body end - def test_should_concatentate_content_for + def test_should_concatenate_content_for get :content_for_concatenated assert_equal expected_content_for_output, @response.body end diff --git a/actionview/test/actionpack/controller/render_test.rb b/actionview/test/actionpack/controller/render_test.rb index 8d048ddbcb..27150c7d5f 100644 --- a/actionview/test/actionpack/controller/render_test.rb +++ b/actionview/test/actionpack/controller/render_test.rb @@ -1122,7 +1122,7 @@ class RenderTest < ActionController::TestCase assert_equal "<title>Putting stuff in the title!</title>\nGreat stuff!\n", @response.body end - def test_overwritting_rendering_relative_file_with_extension + def test_overwriting_rendering_relative_file_with_extension get :hello_world_from_rxml_using_template assert_equal "<html>\n <p>Hello</p>\n</html>\n", @response.body diff --git a/actionview/test/template/form_helper_test.rb b/actionview/test/template/form_helper_test.rb index aef137935a..77c660d450 100644 --- a/actionview/test/template/form_helper_test.rb +++ b/actionview/test/template/form_helper_test.rb @@ -366,7 +366,7 @@ class FormHelperTest < ActionView::TestCase ) end - def test_label_with_to_model_and_overriden_model_name + def test_label_with_to_model_and_overridden_model_name with_locale :label do assert_dom_equal( %{<label for="post_delegator_title">Delegate model_name title</label>}, |