Sha256: 62cf4a3a4ecbec9d62e91f6b1358dc312e3948cdea59e033c6b5f0628dbc20cf

Contents?: true

Size: 819 Bytes

Versions: 5

Compression:

Stored size: 819 Bytes

Contents

ENV['RAILS_ENV'] = 'test'
require File.expand_path('../dummy/config/environment', __FILE__)
require 'rails/test_help'
require 'minitest/rails'

# To add Capybara feature tests add `gem "minitest-rails-capybara"`
# to the test group in the Gemfile and uncomment the following:
# require "minitest/rails/capybara"

# Uncomment for awesome colorful output
# require "minitest/pride"

Rails.backtrace_cleaner.remove_silencers!

Commontator::ApplicationController.class_eval do
  include ApplicationHelper
end

def setup_model_spec
  @user = DummyUser.create
  @commontable = DummyModel.create
  @thread = @commontable.thread
end

def setup_controller_spec
  class_eval {include ApplicationHelper}
  sign_out
  setup_model_spec
end

def setup_helper_spec
  setup_model_spec
end

def setup_mailer_spec
  setup_model_spec
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
commontator-4.2.2 spec/test_helper.rb
commontator-4.2.1 spec/test_helper.rb
commontator-4.2.0 spec/test_helper.rb
commontator-4.1.2 spec/test_helper.rb
commontator-4.1.1 spec/test_helper.rb