Sha256: 95bf8687f14a5831609950b79268f4c993c144ceda3b6e4e5dda09fe8f669331

Contents?: true

Size: 492 Bytes

Versions: 10

Compression:

Stored size: 492 Bytes

Contents

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

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

Rails.backtrace_cleaner.remove_silencers!

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

# Load fixtures from the engine
ActiveSupport::TestCase.fixture_path=(File.expand_path("../dummy/test/fixtures", __FILE__))

class ActiveSupport::TestCase
  fixtures :all
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
phonelib-0.2.7 test/test_helper.rb
phonelib-0.2.6 test/test_helper.rb
phonelib-0.2.5 test/test_helper.rb
phonelib-0.2.4 test/test_helper.rb
phonelib-0.2.3 test/test_helper.rb
phonelib-0.2.2 test/test_helper.rb
phonelib-0.2.1 test/test_helper.rb
phonelib-0.2.0 test/test_helper.rb
phonelib-0.1.3 test/test_helper.rb
phonelib-0.1.2 test/test_helper.rb