1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/readonly_test.rb
Jeremy Kemper 64fcb752f2 r3618@sedna: jeremy | 2005-10-14 12:06:03 -0700
Branch for :join tainting
 r3631@sedna:  jeremy | 2005-10-14 20:13:49 -0700
 Introduce read-only records, object.readonly\!, object.readonly?, Foo.find(:all, :readonly => true).  Foo.find(:all, :joins => '...') also implies :readonly => true.


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2594 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-10-15 00:19:56 +00:00

31 lines
852 B
Ruby
Executable file

require 'abstract_unit'
require 'fixtures/topic'
class ReadOnlyTest < Test::Unit::TestCase
fixtures :topics
def test_cant_save_readonly_record
topic = Topic.find(:first)
assert !topic.readonly?
topic.readonly!
assert topic.readonly?
assert_nothing_raised do
topic.content = 'Luscious forbidden fruit.'
end
assert_raise(ActiveRecord::ReadOnlyRecord) { topic.save }
assert_raise(ActiveRecord::ReadOnlyRecord) { topic.save! }
end
def test_find_with_readonly_option
Topic.find(:all).each { |t| assert !t.readonly? }
Topic.find(:all, :readonly => false).each { |t| assert !t.readonly? }
Topic.find(:all, :readonly => true).each { |t| assert t.readonly? }
end
def test_find_with_joins_option_implies_readonly
Topic.find(:all, :joins => '').each { |t| assert t.readonly? }
end
end