class RSpec::Rails::ActiveRecordConfiguration
Fake class to document RSpec
ActiveRecord configuration options. In practice, these are dynamically added to the normal RSpec
configuration object.
Public Class Methods
Source
# File lib/rspec/rails/active_record.rb, line 7 def self.initialize_activerecord_configuration(config) config.before :suite do # This allows dynamic columns etc to be used on ActiveRecord models when creating instance_doubles if defined?(ActiveRecord) && defined?(ActiveRecord::Base) && defined?(::RSpec::Mocks) && (::RSpec::Mocks.respond_to?(:configuration)) ::RSpec::Mocks.configuration.when_declaring_verifying_double do |possible_model| target = possible_model.target if Class === target && ActiveRecord::Base > target && !target.abstract_class? target.define_attribute_methods end end end end end
@private