1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Improve tests (closes #7166) [zackchandler]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7582 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2007-09-22 23:12:24 +00:00
parent f0dc2774e8
commit 953de118db

View file

@ -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?