Sha256: 6424c2a55e05c8361b4a6055b5f049bef5bd3ef1c1a342d683a8e701b2c3a444

Contents?: true

Size: 627 Bytes

Versions: 1

Compression:

Stored size: 627 Bytes

Contents

# Configure Rails Environment
ENV["RAILS_ENV"] = "test"

require File.expand_path("../dummy/config/environment.rb",  __FILE__)

Dir[File.expand_path('test/support/*.rb')].each { |file| require file }

require "rails/test_help"
require "factory_girl_rails"
require "minitest/rails/capybara"

Rails.backtrace_cleaner.remove_silencers!

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

# Load fixtures from the engine
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
end

include TestMatchers

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
buttafly-0.0.1 test/test_helper.rb