Sha256: fd204f561413f89f49a0cc9303de2a8bc4f188116f67744411280cf1d0122587
Contents?: true
Size: 898 Bytes
Versions: 2
Compression:
Stored size: 898 Bytes
Contents
require 'action_controller/railtie' require 'action_view/railtie' require 'capybara/rspec' require 'fake_app/models/config' app = Class.new(Rails::Application) app.config.secret_token = '7295e7f2718c940f459e5062f575cd92' app.config.session_store :cookie_store, :key => '_myapp_session' app.config.active_support.deprecation = :log app.config.eager_load = false # Rais.root app.config.root = File.dirname(__FILE__) Rails.backtrace_cleaner.remove_silencers! app.initialize! # ROUTES app.routes.draw do resources :products end # MODELS require 'fake_app/models/active_record' # CONTROLLERS class ApplicationController < ActionController::Base; end class ProductsController < ApplicationController def index @products_grid = init_grid(Product) render 'spec/fake_app/views/index', layout: false end end # HELPERS Object.const_set(:ApplicationHelper, Module.new) Capybara.app = app
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mighty_grid-0.3.2 | spec/fake_app/rails_app.rb |
mighty_grid-0.3.1 | spec/fake_app/rails_app.rb |