6873fc8026
Upgraded to Rails 2.0.2, except that we maintain vendor/rails/actionpack/lib/action_controller/routing.rb from Rail 1.2.6 (at least for now), so that Routes don't change. We still get to enjoy Rails's many new features. Also fixed a bug in Chunk-handling: disable WikiWord processing in tags (for real this time).
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
require "#{File.dirname(__FILE__)}/../abstract_unit"
|
|
require "fixtures/person"
|
|
require "fixtures/street_address"
|
|
|
|
class BaseEqualityTest < Test::Unit::TestCase
|
|
def setup
|
|
@new = Person.new
|
|
@one = Person.new(:id => 1)
|
|
@two = Person.new(:id => 2)
|
|
@street = StreetAddress.new(:id => 2)
|
|
end
|
|
|
|
def test_should_equal_self
|
|
assert @new == @new, '@new == @new'
|
|
assert @one == @one, '@one == @one'
|
|
end
|
|
|
|
def test_shouldnt_equal_new_resource
|
|
assert @new != @one, '@new != @one'
|
|
assert @one != @new, '@one != @new'
|
|
end
|
|
|
|
def test_shouldnt_equal_different_class
|
|
assert @two != @street, 'person != street_address with same id'
|
|
assert @street != @two, 'street_address != person with same id'
|
|
end
|
|
|
|
def test_eql_should_alias_equals_operator
|
|
assert_equal @new == @new, @new.eql?(@new)
|
|
assert_equal @new == @one, @new.eql?(@one)
|
|
|
|
assert_equal @one == @one, @one.eql?(@one)
|
|
assert_equal @one == @new, @one.eql?(@new)
|
|
|
|
assert_equal @one == @street, @one.eql?(@street)
|
|
end
|
|
|
|
def test_hash_should_be_id_hash
|
|
[@new, @one, @two, @street].each do |resource|
|
|
assert_equal resource.id.hash, resource.hash
|
|
end
|
|
end
|
|
end
|