Sha256: 532598ba03bdc129d66c8b41df887c7eadb440db9b9bfb47829bc6004fbc2d5e

Contents?: true

Size: 624 Bytes

Versions: 18

Compression:

Stored size: 624 Bytes

Contents

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

require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require "rails/test_help"
require 'shoulda-context'

Rails.backtrace_cleaner.remove_silencers!

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

# Load fixtures from the engine
# https://github.com/rails/rails/issues/4971#issuecomment-20129088
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)

class ActiveSupport::TestCase
  fixtures :all
end

class ActionController::TestCase
  include Edgarj::ControllerSupporter
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
edgarj-0.02.00 test/test_helper.rb
edgarj-0.01.30 test/test_helper.rb
edgarj-0.01.29 test/test_helper.rb
edgarj-0.01.28 test/test_helper.rb
edgarj-0.01.27 test/test_helper.rb
edgarj-0.01.26 test/test_helper.rb
edgarj-0.01.25 test/test_helper.rb
edgarj-0.01.24 test/test_helper.rb
edgarj-0.01.22 test/test_helper.rb
edgarj-0.01.21 test/test_helper.rb
edgarj-0.01.20 test/test_helper.rb
edgarj-0.01.19 test/test_helper.rb
edgarj-0.01.18 test/test_helper.rb
edgarj-0.01.17 test/test_helper.rb
edgarj-0.01.16 test/test_helper.rb
edgarj-0.01.15 test/test_helper.rb
edgarj-0.01.13 test/test_helper.rb
edgarj-0.01.12 test/test_helper.rb