Class: FactoryGirl::Proxy

Inherits:
Object
  • Object
show all
Defined in:
lib/factory_girl/proxy.rb,
lib/factory_girl/proxy/stub.rb,
lib/factory_girl/proxy/build.rb,
lib/factory_girl/proxy/create.rb,
lib/factory_girl/proxy/attributes_for.rb

Overview

:nodoc:

Direct Known Subclasses

AttributesFor, Build, Stub

Defined Under Namespace

Classes: AttributesFor, Build, Create, Stub

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(klass) ⇒ Proxy

Returns a new instance of Proxy.



6
7
8
9
# File 'lib/factory_girl/proxy.rb', line 6

def initialize(klass)
  @callbacks = {}
  @ignored_attributes = {}
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object



72
73
74
# File 'lib/factory_girl/proxy.rb', line 72

def method_missing(method, *args, &block)
  get(method)
end

Instance Attribute Details

#callbacksObject (readonly)

Returns the value of attribute callbacks.



4
5
6
# File 'lib/factory_girl/proxy.rb', line 4

def callbacks
  @callbacks
end

Instance Method Details

#add_callback(callback) ⇒ Object



24
25
26
27
# File 'lib/factory_girl/proxy.rb', line 24

def add_callback(callback)
  @callbacks[callback.name] ||= []
  @callbacks[callback.name] << callback
end

#associate(name, factory, attributes) ⇒ Object



21
22
# File 'lib/factory_girl/proxy.rb', line 21

def associate(name, factory, attributes)
end

#association(name, overrides = {}) ⇒ Object

Generates an association using the current build strategy.

Arguments:

name: (Symbol)
  The name of the factory that should be used to generate this
  association.
attributes: (Hash)
  A hash of attributes that should be overridden for this association.

Returns:

The generated association for the current build strategy. Note that
associations are not generated for the attributes_for strategy. Returns
nil in this case.

Example:

factory :user do
  # ...
end

factory :post do
  # ...
  author { |post| post.association(:user, :name => 'Joe') }
end

# Builds (but doesn't save) a Post and a User
FactoryGirl.build(:post)

# Builds and saves a User, builds a Post, assigns the User to the
# author association, and saves the Post.
FactoryGirl.create(:post)


69
70
# File 'lib/factory_girl/proxy.rb', line 69

def association(name, overrides = {})
end

#get(attribute) ⇒ Object



11
12
# File 'lib/factory_girl/proxy.rb', line 11

def get(attribute)
end

#result(to_create) ⇒ Object

Raises:

  • (NotImplementedError)


76
77
78
# File 'lib/factory_girl/proxy.rb', line 76

def result(to_create)
  raise NotImplementedError, "Strategies must return a result"
end

#run_callbacks(name) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/factory_girl/proxy.rb', line 29

def run_callbacks(name)
  if @callbacks[name]
    @callbacks[name].each do |callback|
      callback.run(@instance, self)
    end
  end
end

#set(attribute, value) ⇒ Object



14
15
# File 'lib/factory_girl/proxy.rb', line 14

def set(attribute, value)
end

#set_ignored(attribute, value) ⇒ Object



17
18
19
# File 'lib/factory_girl/proxy.rb', line 17

def set_ignored(attribute, value)
  @ignored_attributes[attribute] = value
end