class FactoryGirl::Trait

Attributes

block[R]
name[R]

Public Instance Methods

==(other) click to toggle source
# File lib/factory_girl/trait.rb, line 21
def ==(other)
  name == other.name &&
    block == other.block
end
names() click to toggle source
# File lib/factory_girl/trait.rb, line 17
def names
  [@name]
end