aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/string_ext_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-12-27 15:49:29 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-12-27 15:49:29 -0800
commit19c48281a7bd94a42a80c1f8fc905e95820e8506 (patch)
tree143e16dd0351afdc4f1566cd52dd0fbbf31f533f /activesupport/test/core_ext/string_ext_test.rb
parent7c4fb93ac30b03c512ba163c5444eced18f12171 (diff)
downloadrails-19c48281a7bd94a42a80c1f8fc905e95820e8506.tar.gz
rails-19c48281a7bd94a42a80c1f8fc905e95820e8506.tar.bz2
rails-19c48281a7bd94a42a80c1f8fc905e95820e8506.zip
String#exclude? core extension: inverse of #include?
Diffstat (limited to 'activesupport/test/core_ext/string_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/string_ext_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index 6ed209f724..9a805bc010 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -441,3 +441,10 @@ class OutputSafetyTest < ActiveSupport::TestCase
assert @string.html_safe?
end
end
+
+class StringExcludeTest < ActiveSupport::TestCase
+ test 'inverse of #include' do
+ assert_equal false, 'foo'.exclude?('o')
+ assert_equal true, 'foo'.exclude?('p')
+ end
+end