Sha256: e4ffdffe3211149fea186b8c7417f34b3121f1d822b3ed64ef7d7a415321ff9c
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
ENV["RAILS_ENV"] ||= "test" ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __FILE__) require 'bundler/setup' require 'rails/all' require "minitest-spec-rails" Bundler.require(:default, Rails.env) module Dummy class Application < ::Rails::Application # Basic Engine config.root = File.join __FILE__, '..' config.cache_store = :memory_store config.assets.enabled = false if Rails.version > '3.1' config.secret_token = '012345678901234567890123456789' # Mimic Test Environment Config. config.whiny_nils = true if Rails.version < '4.0' config.consider_all_requests_local = true config.action_controller.perform_caching = false config.action_dispatch.show_exceptions = false config.action_controller.allow_forgery_protection = false config.action_mailer.delivery_method = :test config.active_support.deprecation = :stderr config.allow_concurrency = true config.cache_classes = true config.dependency_loading = true config.preload_frameworks = true config.eager_load = true config.secret_key_base = '012345678901234567890123456789' # Custom config.minitest_spec_rails.mini_shoulda = true end end Dummy::Application.initialize! require 'rails/test_help'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
self_systeem-0.0.5 | test/dummy_app/init.rb |
self_systeem-0.0.4 | test/dummy_app/init.rb |