diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-22 23:12:24 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-22 23:12:24 +0000 |
commit | 953de118db423fe678b5e4c55209f0fcd0b53bbf (patch) | |
tree | c13c5eccc4812a315bdc298f87bc65cfdec12c7d /activesupport | |
parent | f0dc2774e80496bbc46f5b44e76deaa575131a42 (diff) | |
download | rails-953de118db423fe678b5e4c55209f0fcd0b53bbf.tar.gz rails-953de118db423fe678b5e4c55209f0fcd0b53bbf.tar.bz2 rails-953de118db423fe678b5e4c55209f0fcd0b53bbf.zip |
Improve tests (closes #7166) [zackchandler]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7582 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/core_ext/blank_test.rb | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/blank_test.rb b/activesupport/test/core_ext/blank_test.rb index 76a0b39978..a14edf440b 100644 --- a/activesupport/test/core_ext/blank_test.rb +++ b/activesupport/test/core_ext/blank_test.rb @@ -1,8 +1,39 @@ require File.dirname(__FILE__) + '/../abstract_unit' +class EmptyTrue + def empty?() true; end +end + +class EmptyFalse + def empty?() false; end +end + +class EmptyStripNotEmpty + def empty?() true; end + def strip() 'foo'; end +end + +class EmptyStripEmpty + def empty?() true; end + def strip() ''; end +end + +class NotEmptyStripNotEmpty + def empty?() false; end + def strip() 'foo'; end +end + +class NotEmptyStripEmpty + def empty?() false; end + def strip() ''; end +end + class BlankTest < Test::Unit::TestCase - BLANK = [nil, false, '', ' ', " \n\t \r ", [], {}] - NOT = [true, 0, 1, 'a', [nil], { nil => 0 }] + BLANK = [ EmptyTrue.new, EmptyStripNotEmpty.new, EmptyStripEmpty.new, + NotEmptyStripEmpty.new, nil, false, '', ' ', " \n\t \r ", + [], {} ] + NOT = [ EmptyFalse.new, NotEmptyStripNotEmpty.new, Object.new, true, + 0, 1, 'a', [nil], { nil => 0 } ] class EmptyObject def empty? |