Sha256: 7dfe75c32478bd92d100ebc1863098f536f8d33924f73db2d24ced50bb00eeb1

Contents?: true

Size: 1.38 KB

Versions: 14

Compression:

Stored size: 1.38 KB

Contents

unless defined? SPREE_ROOT
  ENV["RAILS_ENV"] = "test"
  case
  when ENV["SPREE_ENV_FILE"]
    require ENV["SPREE_ENV_FILE"]
  when File.dirname(__FILE__) =~ %r{vendor/SPREE/vendor/extensions}
    require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../../../")}/config/environment"
  else
    require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../")}/config/environment"
  end
end
require "#{SPREE_ROOT}/spec/spec_helper"

if File.directory?(File.dirname(__FILE__) + "/scenarios")
  Scenario.load_paths.unshift File.dirname(__FILE__) + "/scenarios"
end
if File.directory?(File.dirname(__FILE__) + "/matchers")
  Dir[File.dirname(__FILE__) + "/matchers/*.rb"].each {|file| require file }
end

Spec::Runner.configure do |config|
  # config.use_transactional_fixtures = true
  # config.use_instantiated_fixtures  = false
  # config.fixture_path = RAILS_ROOT + '/spec/fixtures'

  # You can declare fixtures for each behaviour like this:
  #   describe "...." do
  #     fixtures :table_a, :table_b
  #
  # Alternatively, if you prefer to declare them only once, you can
  # do so here, like so ...
  #
  #   config.global_fixtures = :table_a, :table_b
  #
  # If you declare global fixtures, be aware that they will be declared
  # for all of your examples, even those that don't use them.
end

def login(username)
  user = users(username.to_sym)
  request.session[:user_id] = user.id
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
spree-0.8.4 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.8.5 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.2.0 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.4.1 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.4.0 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.5.0 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.5.1 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.6.0 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.7.0 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.7.1 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.8.0 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.8.1 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.8.2 vendor/extensions/tax_calculator/spec/spec_helper.rb
spree-0.8.3 vendor/extensions/tax_calculator/spec/spec_helper.rb