Sha256: cf42ff704b18646f753efeb8d97487ba3b128ac7d4b763db3eb854d7fe8becd2
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true require 'support/isolated_unit' module ActiveModelSerializers RailsApplication = TestHelpers::Generation.make_basic_app do |app| app.configure do config.secret_key_base = 'abc123' config.active_support.test_order = :random config.action_controller.perform_caching = true config.action_controller.cache_store = :memory_store config.filter_parameters += [:password] end app.routes.default_url_options = { host: 'example.com' } end end Routes = ActionDispatch::Routing::RouteSet.new Routes.draw do get ':controller(/:action(/:id))' get ':controller(/:action)' end ActionController::Base.send :include, Routes.url_helpers ActionController::TestCase.class_eval do def setup @routes = Routes end end # ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)] # ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__) # # Load fixtures from the engine # if ActiveSupport::TestCase.respond_to?(:fixture_path=) # ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__) # ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path # ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files" # ActiveSupport::TestCase.fixtures :all # end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
active_model_serializers_custom-0.10.90 | test/support/rails_app.rb |
active_model_serializers-0.10.9 | test/support/rails_app.rb |