aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/class/attribute_accessor_test.rb
blob: 85d0dd89e24af8f418267d0e9390e3f68388d1fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'abstract_unit'

class ClassAttributeAccessorTest < Test::Unit::TestCase
  def setup
    @class = Class.new do
      cattr_accessor :foo
      cattr_accessor :bar, :instance_writer => false
    end
    @object = @class.new
  end
  
  def test_should_use_mattr_default
    assert_nil @class.foo
    assert_nil @object.foo
  end
  
  def test_should_set_mattr_value
    @class.foo = :test
    assert_equal :test, @object.foo
  
    @object.foo = :test2
    assert_equal :test2, @class.foo
  end
  
  def test_should_not_create_instance_writer
    assert @class.respond_to?(:foo)
    assert @class.respond_to?(:foo=)
    assert @object.respond_to?(:bar)
    assert !@object.respond_to?(:bar=)
  end
end