Sha256: f5a15cd2daca1265dc57d5863aac2716bab954aa10e4a176c95edcb568a20297

Contents?: true

Size: 962 Bytes

Versions: 1

Compression:

Stored size: 962 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
  @comment = Commontator::Comment.new
  @comment.body = 'Some comment'
  @comment.thread = @thread
  @comment.creator = @user
  @comment.save!
end

def setup_mailer_spec
  setup_model_spec
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
commontator-4.3.0 spec/test_helper.rb