Sha256: 476d5cf4542832a458d8e7f165dcd2556dda0bbbf58789a9a59af2e6043414a8

Contents?: true

Size: 804 Bytes

Versions: 61

Compression:

Stored size: 804 Bytes

Contents

require File.dirname(__FILE__) + '/../../abstract_unit'

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

Version data entries

61 entries across 61 versions & 2 rubygems

Version Path
backlog-0.0.0 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.0.1 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.0.2 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.0.4 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.0.5 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.1.1 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.1.0 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.1.2 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.2.0 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.2.1 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.0 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.3 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.2 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.1 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.4 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.5 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.6 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.7 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.8 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb
backlog-0.3.9 vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb