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
# File 'lib/factory_girl/proxy.rb', line 6

def initialize(klass)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

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



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

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(name, block) ⇒ Object



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

def add_callback(name, block)
  @callbacks ||= {}
  @callbacks[name] ||= []
  @callbacks[name] << block
end

#associate(name, factory, attributes) ⇒ Object



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

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 User.
FactoryGirl.create(:post)


65
66
67
# File 'lib/factory_girl/proxy.rb', line 65

def association(name, overrides = {})
  nil
end

#get(attribute) ⇒ Object



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

def get(attribute)
  nil
end

#result(to_create) ⇒ Object

Raises:

  • (NotImplementedError)


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

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

#run_callbacks(name) ⇒ Object



25
26
27
28
29
30
31
# File 'lib/factory_girl/proxy.rb', line 25

def run_callbacks(name)
  if @callbacks && @callbacks[name]
    @callbacks[name].each do |block|
      block.arity.zero? ? block.call : block.call(@instance)
    end
  end
end

#set(attribute, value) ⇒ Object



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

def set(attribute, value)
end