From 5da89af6f6d1e36ac2163e87a090a923431f5bd0 Mon Sep 17 00:00:00 2001 From: Neeraj Singh Date: Fri, 10 Jun 2011 14:19:24 -0400 Subject: try not to use assert_blank when nil will would be considered as failure Test for specific value to the extent possible --- actionpack/test/controller/webservice_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/test/controller/webservice_test.rb b/actionpack/test/controller/webservice_test.rb index 621fb79915..ae8588cbb0 100644 --- a/actionpack/test/controller/webservice_test.rb +++ b/actionpack/test/controller/webservice_test.rb @@ -30,7 +30,7 @@ class WebServiceTest < ActionDispatch::IntegrationTest def test_check_parameters with_test_route_set do get "/" - assert_blank @controller.response.body + assert_equal '', @controller.response.body end end @@ -162,7 +162,7 @@ class WebServiceTest < ActionDispatch::IntegrationTest def test_use_xml_ximple_with_empty_request with_test_route_set do assert_nothing_raised { post "/", "", {'CONTENT_TYPE' => 'application/xml'} } - assert_blank @controller.response.body + assert_equal '', @controller.response.body end end -- cgit v1.2.3 From 6688b6393a0e98669a6152d701224e016f8f8e93 Mon Sep 17 00:00:00 2001 From: Neeraj Singh Date: Sat, 11 Jun 2011 02:52:13 -0400 Subject: expected message should come first --- actionpack/test/controller/url_for_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/test/controller/url_for_test.rb b/actionpack/test/controller/url_for_test.rb index 3f3d6dcc2f..484e996f31 100644 --- a/actionpack/test/controller/url_for_test.rb +++ b/actionpack/test/controller/url_for_test.rb @@ -293,8 +293,8 @@ module AbstractController first_class.default_url_options[:host] = first_host second_class.default_url_options[:host] = second_host - assert_equal first_class.default_url_options[:host], first_host - assert_equal second_class.default_url_options[:host], second_host + assert_equal first_host, first_class.default_url_options[:host] + assert_equal second_host, second_class.default_url_options[:host] end def test_with_stringified_keys -- cgit v1.2.3 From f3c9f32664595b955f60a68f194f2f2939475b67 Mon Sep 17 00:00:00 2001 From: Neeraj Singh Date: Sat, 11 Jun 2011 03:06:28 -0400 Subject: remove meaningless assert true --- actionpack/test/controller/test_test.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/actionpack/test/controller/test_test.rb b/actionpack/test/controller/test_test.rb index f48b73b63a..6265e78030 100644 --- a/actionpack/test/controller/test_test.rb +++ b/actionpack/test/controller/test_test.rb @@ -612,7 +612,6 @@ XML send(method, :test_remote_addr) assert false, "expected RuntimeError, got nothing" rescue RuntimeError => error - assert true assert_match(%r{@#{variable} is nil}, error.message) rescue => error assert false, "expected RuntimeError, got #{error.class}" -- cgit v1.2.3