Sha256: 2bf806178f46831a117c250f55794b547c21b68d4744dd224c04e77c4ecf524f

Contents?: true

Size: 1.53 KB

Versions: 6

Compression:

Stored size: 1.53 KB

Contents

require "cases/helper"
require 'thread'

module ActiveRecord
  module AttributeMethods
    class ReadTest < ActiveRecord::TestCase
      class FakeColumn < Struct.new(:name)
        def type; :integer; end
      end

      def setup
        @klass = Class.new do
          def self.superclass; Base; end
          def self.base_class; self; end
          def self.decorate_matching_attribute_types(*); end
          def self.initialize_generated_modules; end

          include ActiveRecord::AttributeMethods

          def self.attribute_names
            %w{ one two three }
          end

          def self.primary_key
          end

          def self.columns
            attribute_names.map { FakeColumn.new(name) }
          end

          def self.columns_hash
            Hash[attribute_names.map { |name|
              [name, FakeColumn.new(name)]
            }]
          end
        end
      end

      def test_define_attribute_methods
        instance = @klass.new

        @klass.attribute_names.each do |name|
          assert !instance.methods.map(&:to_s).include?(name)
        end

        @klass.define_attribute_methods

        @klass.attribute_names.each do |name|
          assert instance.methods.map(&:to_s).include?(name), "#{name} is not defined"
        end
      end

      def test_attribute_methods_generated?
        assert_not @klass.method_defined?(:one)
        @klass.define_attribute_methods
        assert @klass.method_defined?(:one)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/cases/attribute_methods/read_test.rb
ibm_db-5.1.0-x86-mingw32 test/cases/attribute_methods/read_test.rb
ibm_db-5.0.5-x86-mingw32 test/cases/attribute_methods/read_test.rb
ibm_db-5.0.4-x86-mingw32 test/cases/attribute_methods/read_test.rb
ibm_db-5.0.3-x86-mingw32 test/cases/attribute_methods/read_test.rb
ibm_db-5.0.2-x86-mingw32 test/cases/attribute_methods/read_test.rb