Sha256: 1a0ca482943b0e43f6adef47489a814afb1200d3a45f3c666c373831e902abd2

Contents?: true

Size: 1.63 KB

Versions: 79

Compression:

Stored size: 1.63 KB

Contents

require 'abstract_unit'

class AttributeMethodsTest < Test::Unit::TestCase
  def setup
    @old_suffixes = ActiveRecord::Base.send(:attribute_method_suffixes).dup
    @target = Class.new(ActiveRecord::Base)
    @target.table_name = 'topics'
  end

  def teardown
    ActiveRecord::Base.send(:attribute_method_suffixes).clear
    ActiveRecord::Base.attribute_method_suffix *@old_suffixes
  end


  def test_match_attribute_method_query_returns_match_data
    assert_not_nil md = @target.match_attribute_method?('title=')
    assert_equal 'title', md.pre_match
    assert_equal ['='], md.captures

    %w(_hello_world ist! _maybe?).each do |suffix|
      @target.class_eval "def attribute#{suffix}(*args) args end"
      @target.attribute_method_suffix suffix

      assert_not_nil md = @target.match_attribute_method?("title#{suffix}")
      assert_equal 'title', md.pre_match
      assert_equal [suffix], md.captures
    end
  end

  def test_declared_attribute_method_affects_respond_to_and_method_missing
    topic = @target.new(:title => 'Budget')
    assert topic.respond_to?('title')
    assert_equal 'Budget', topic.title
    assert !topic.respond_to?('title_hello_world')
    assert_raise(NoMethodError) { topic.title_hello_world }

    %w(_hello_world _it! _candidate= able?).each do |suffix|
      @target.class_eval "def attribute#{suffix}(*args) args end"
      @target.attribute_method_suffix suffix

      meth = "title#{suffix}"
      assert topic.respond_to?(meth)
      assert_equal ['title'], topic.send(meth)
      assert_equal ['title', 'a'], topic.send(meth, 'a')
      assert_equal ['title', 1, 2, 3], topic.send(meth, 1, 2, 3)
    end
  end
end

Version data entries

79 entries across 79 versions & 6 rubygems

Version Path
backlog-0.7.2 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.7.3 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.7.5 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.7.4 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.7.6 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.7.7 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.7.8 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.7.9 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.8.0 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.8.1 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.9.0 vendor/rails/activerecord/test/attribute_methods_test.rb
backlog-0.9.1 vendor/rails/activerecord/test/attribute_methods_test.rb
radiant-0.6.1 vendor/rails/activerecord/test/attribute_methods_test.rb
radiant-0.6.0 vendor/rails/activerecord/test/attribute_methods_test.rb
radiant-0.6.2 vendor/rails/activerecord/test/attribute_methods_test.rb
radiant-0.6.3 vendor/rails/activerecord/test/attribute_methods_test.rb
radiant-0.6.4 vendor/rails/activerecord/test/attribute_methods_test.rb
rq-3.4.0 rails/vendor/rails/activerecord/test/attribute_methods_test.rb
rq-3.3.0 rails/vendor/rails/activerecord/test/attribute_methods_test.rb