Sha256: 2a1cd8ed792247110a30fcd3798b31c6d0cab8472d3855cb9e82ca39900a7d2d

Contents?: true

Size: 1.88 KB

Versions: 146

Compression:

Stored size: 1.88 KB

Contents

module Shoulda # :nodoc:
  # Call autoload_macros when you want to load test macros automatically in a non-Rails
  # project (it's done automatically for Rails projects).
  # You don't need to specify ROOT/test/shoulda_macros explicitly. Your custom macros
  # are loaded automatically when you call autoload_macros.
  #
  # The first argument is the path to you application's root directory.
  # All following arguments are directories relative to your root, which contain
  # shoulda_macros subdirectories. These directories support the same kinds of globs as the
  # Dir class.
  #
  # Basic usage (from a test_helper):
  # Shoulda.autoload_macros(File.dirname(__FILE__) + '/..')
  # will load everything in
  # - your_app/test/shoulda_macros
  #
  # To load vendored macros as well:
  # Shoulda.autoload_macros(APP_ROOT, 'vendor/*')
  # will load everything in
  # - APP_ROOT/vendor/*/shoulda_macros
  # - APP_ROOT/test/shoulda_macros
  #
  # To load macros in an app with a vendor directory laid out like Rails':
  # Shoulda.autoload_macros(APP_ROOT, 'vendor/{plugins,gems}/*')
  # or
  # Shoulda.autoload_macros(APP_ROOT, 'vendor/plugins/*', 'vendor/gems/*')
  # will load everything in
  # - APP_ROOT/vendor/plugins/*/shoulda_macros
  # - APP_ROOT/vendor/gems/*/shoulda_macros
  # - APP_ROOT/test/shoulda_macros
  #
  # If you prefer to stick testing dependencies away from your production dependencies:
  # Shoulda.autoload_macros(APP_ROOT, 'vendor/*', 'test/vendor/*')
  # will load everything in
  # - APP_ROOT/vendor/*/shoulda_macros
  # - APP_ROOT/test/vendor/*/shoulda_macros
  # - APP_ROOT/test/shoulda_macros
  def self.autoload_macros(root, *dirs)
    dirs << File.join('test')
    complete_dirs = dirs.map{|d| File.join(root, d, 'shoulda_macros')}
    all_files     = complete_dirs.inject([]){ |files, dir| files + Dir[File.join(dir, '*.rb')] }
    all_files.each do |file|
      require file
    end
  end
end

Version data entries

146 entries across 99 versions & 15 rubygems

Version Path
shoulda-context-1.1.2 lib/shoulda/context/autoload_macros.rb
challah-1.0.0.beta3 vendor/bundle/gems/shoulda-context-1.1.0/lib/shoulda/context/autoload_macros.rb
challah-1.0.0.beta3 vendor/bundle/gems/shoulda-context-1.1.1/lib/shoulda/context/autoload_macros.rb
challah-1.0.0.beta2 vendor/bundle/gems/shoulda-context-1.1.1/lib/shoulda/context/autoload_macros.rb
challah-1.0.0.beta2 vendor/bundle/gems/shoulda-context-1.1.0/lib/shoulda/context/autoload_macros.rb
shoulda-context-1.1.1 lib/shoulda/context/autoload_macros.rb
challah-1.0.0.beta vendor/bundle/gems/shoulda-context-1.0.2/lib/shoulda/context/autoload_macros.rb
challah-1.0.0.beta vendor/bundle/gems/shoulda-context-1.0.1/lib/shoulda/context/autoload_macros.rb
challah-1.0.0.beta vendor/bundle/gems/shoulda-context-1.1.0/lib/shoulda/context/autoload_macros.rb
shoulda-context-1.1.0 lib/shoulda/context/autoload_macros.rb
challah-0.9.1.beta.3 vendor/bundle/gems/shoulda-context-1.0.1/lib/shoulda/context/autoload_macros.rb
devise_sociable-0.1.0 vendor/bundle/gems/shoulda-context-1.0.2/lib/shoulda/context/autoload_macros.rb
challah-0.9.1.beta vendor/bundle/gems/shoulda-context-1.0.1/lib/shoulda/context/autoload_macros.rb
challah-0.9.0 vendor/bundle/gems/shoulda-context-1.0.1/lib/shoulda/context/autoload_macros.rb
shoulda-context-1.0.2 lib/shoulda/context/autoload_macros.rb
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/autoload_macros.rb
dirty_history-0.7.2 dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/autoload_macros.rb
dirty_history-0.7.1 dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/autoload_macros.rb
challah-rolls-0.2.0 vendor/bundle/gems/shoulda-context-1.0.1/lib/shoulda/context/autoload_macros.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/shoulda-context-1.0.0/lib/shoulda/context/autoload_macros.rb