aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/flash_hash_test.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/actionpack/test/controller/flash_hash_test.rb b/actionpack/test/controller/flash_hash_test.rb
index 28c338c286..9b69a2648e 100644
--- a/actionpack/test/controller/flash_hash_test.rb
+++ b/actionpack/test/controller/flash_hash_test.rb
@@ -86,15 +86,5 @@ module ActionDispatch
@hash.sweep
assert_equal({'omg' => 'world'}, @hash.to_hash)
end
-
- def test_discard_many_args
- @hash['hello'] = 'world'
- @hash['<3'] = 'world'
- @hash['omg'] = 'world'
-
- @hash.discard ['hello', 'omg']
- @hash.sweep
- assert_equal({'<3' => 'world'}, @hash.to_hash)
- end
end
end