Sha256: 96a33820642c334793f3726699cdb1b8a2e6fa0d79883d2eaca27bd5aa529415

Contents?: true

Size: 1.84 KB

Versions: 13

Compression:

Stored size: 1.84 KB

Contents

# -*- encoding : utf-8 -*-
require 'spork'

ENV["RAILS_ENV"] = 'test'


Spork.prefork do
  require File.expand_path( '../simplecov_helper.rb', __FILE__ )
  
  if ENV["RAILS_ROOT"]
    require File.join( ENV["RAILS_ROOT"], '/config/environment')
  else
    require File.expand_path( '../../config/environment', __FILE__ )
  end

  if defined?(Bundler)
    Bundler.require(:test)   # if simplecov is activated in the Gemfile, it has to be required here
  end
  

  
  require 'rspec/rails'
  
  # Requires supporting ruby files with custom matchers and macros, etc,
  # in spec/support/ and its subdirectories.
#  Dir[ File.join(Wagn.gem_root, "spec/support/**/*.rb") ].each { |f| require f }

#  FIXTURES_PATH = File.dirname(__FILE__) + '/../fixtures'
  JOE_USER_ID = Card['joe_user'].id

  RSpec.configure do |config|
    config.include RSpec::Rails::Matchers::RoutingMatchers,  {
      :file_path => /\bspec\/controllers\//
    }
    config.infer_spec_type_from_file_location!
    # format_index = ARGV.find_index {|arg| arg =~ /--format/ }
    # formatter = format_index ? ARGV[ format_index + 1 ] : 'documentation'
    # config.add_formatter formatter
    
    #config.include CustomMatchers
    #config.include ControllerMacros, :type=>:controllers

    # == Mock Framework
    # If you prefer to mock with mocha, flexmock or RR, uncomment the appropriate symbol:
    # :mocha, :flexmock, :rr

    # config.mock_with :rr

    config.use_transactional_fixtures = true
    config.use_instantiated_fixtures  = false
    

    config.before(:each) do
      Card::Auth.current_id = JOE_USER_ID
      Wagn::Cache.restore
      Card::Env.reset
    end
    config.after(:each) do
      Timecop.return
    end
  end
end


Spork.each_run do
  # This code will be run each time you run your specs.
end

require 'wagn/spec_helper'
RSpec::Core::ExampleGroup.send :include, Wagn::SpecHelper


Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
wagn-1.14.9 lib/wagn/mods_spec_helper.rb
wagn-1.14.8 lib/wagn/mods_spec_helper.rb
wagn-1.14.7 lib/wagn/mods_spec_helper.rb
wagn-1.14.6 lib/wagn/mods_spec_helper.rb
wagn-1.14.5 lib/wagn/mods_spec_helper.rb
wagn-1.14.4 lib/wagn/mods_spec_helper.rb
wagn-1.14.3 lib/wagn/mods_spec_helper.rb
wagn-1.14.2 lib/wagn/mods_spec_helper.rb
wagn-1.14.1 lib/wagn/mods_spec_helper.rb
wagn-1.14.0 lib/wagn/mods_spec_helper.rb
wagn-1.14.0.pre3 lib/wagn/mods_spec_helper.rb
wagn-1.14.0.pre2 lib/wagn/mods_spec_helper.rb
wagn-1.14.0.pre1 lib/wagn/mods_spec_helper.rb