Remove unnecessary assertions. We should only test the before_seq isn't same to the after_seq when using sequencer.

This commit is contained in:
kennyj 2012-05-16 01:33:52 +09:00
parent 1c3e5bee3d
commit 53debf1456

@ -1514,11 +1514,7 @@ def test_clear_cash_when_setting_table_name
after_seq = Joke.sequence_name
assert_not_equal before_columns, after_columns
unless before_seq.nil? && after_seq.nil?
assert_not_equal before_seq, after_seq
assert_equal "cold_jokes_id_seq", before_seq
assert_equal "funny_jokes_id_seq", after_seq
end
assert_not_equal before_seq, after_seq unless before_seq.nil? && after_seq.nil?
end
def test_dont_clear_sequence_name_when_setting_explicitly