require "action_controller/railtie" app = Class.new(Rails::Application) app.config.secret_key_base = "1234567890abcdef1234567890abcdef" app.config.secret_token = "1234567890abcdef1234567890abcdef" app.config.session_store :cookie_store, key: "_myapp_session" app.config.active_support.deprecation = :log app.config.eager_load = false app.config.root = File.dirname(__FILE__) Rails.backtrace_cleaner.remove_silencers! app.initialize! app.routes.draw do resources :widgets end InfluxDB::Rails.configure do |config| end class ApplicationController < ActionController::Base; end class WidgetsController < ApplicationController def index head 200 end def new 1 / 0 end end Object.const_set(:ApplicationHelper, Module.new)