Module: Refinery::Testing

Defined in:
lib/refinery/testing.rb,
lib/refinery/testing/railtie.rb,
lib/refinery/testing/feature_macros.rb,
lib/refinery/testing/controller_macros.rb,
lib/refinery/testing/controller_macros/methods.rb,
lib/refinery/testing/feature_macros/authentication.rb,
lib/refinery/testing/controller_macros/authentication.rb

Defined Under Namespace

Modules: ControllerMacros, FeatureMacros Classes: Railtie

Class Method Summary collapse

Class Method Details

.load_factoriesObject

Load the factories of all currently loaded extensions



15
16
17
18
19
20
21
22
23
24
# File 'lib/refinery/testing.rb', line 15

def load_factories
  Refinery.extensions.each do |extension_const|
    if extension_const.respond_to?(:factory_paths)
      extension_const.send(:factory_paths).each do |path|
        FactoryGirl.definition_file_paths << path
      end
    end
  end
  FactoryGirl.find_definitions
end

.rootObject



10
11
12
# File 'lib/refinery/testing.rb', line 10

def root
  @root ||= Pathname.new(File.expand_path('../../../', __FILE__))
end