diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-03-19 03:50:14 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-03-19 03:50:14 +0000 |
commit | 891a962a192bdd7eb0402b41e11a5e5657fe961c (patch) | |
tree | 2f34ec037e56a8fa6e537adb15faafba0e5dd17d /activesupport/test | |
parent | 9038303af0a634a3ac9ae8234d121a1815960d2e (diff) | |
download | rails-891a962a192bdd7eb0402b41e11a5e5657fe961c.tar.gz rails-891a962a192bdd7eb0402b41e11a5e5657fe961c.tar.bz2 rails-891a962a192bdd7eb0402b41e11a5e5657fe961c.zip |
Added nicer message for assert_redirected_to (closes #4294) [court3nay, Chris McGrath]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3969 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/hash_ext_test.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb index a11cef6fc4..3fc3b86254 100644 --- a/activesupport/test/core_ext/hash_ext_test.rb +++ b/activesupport/test/core_ext/hash_ext_test.rb @@ -174,6 +174,10 @@ class HashExtTest < Test::Unit::TestCase def test_reverse_merge assert_equal({ :a => 1, :b => 2, :c => 10 }, { :a => 1, :b => 2 }.reverse_merge({:a => "x", :b => "y", :c => 10}) ) end + + def test_diff + assert_equal({ :a => 2 }, { :a => 2, :b => 5 }.diff({ :a => 1, :b => 5 })) + end end class HashToXmlTest < Test::Unit::TestCase @@ -234,4 +238,4 @@ class HashToXmlTest < Test::Unit::TestCase xml = { :name => "David", :addresses => [{ :streets => [ { :name => "Paulina" }, { :name => "Paulina" } ] } ] }.to_xml(@xml_options) assert xml.include?(%(<addresses><address><streets><street><name>)) end -end
\ No newline at end of file +end |