mini-test
フレームワークのテストに使用します。omniauth
認証にはgemを使用しています。simplecov
コードカバレッジに使用します。"bundle exec rake"
またはを使用してテストを実行します"rake minitest:controllers"
。コントローラーの例を挙げます。を実行するrake minitest:controllers
と、コントローラのコード カバレッジが 100% になります。しかし、実行するbundle exec rake
と、コントローラのコード カバレッジが 60% になります。
SessionsController.rb コード:
class SessionsController < ApplicationController
def create
auth = request.env["omniauth.auth"]
person=Person.find_by_provider_and_uid(auth.provider,auth.uid) || Person.create_with_omniauth(auth)
redirect_to root_path
end
end
SessionsController_test.rb
require "minitest_helper"
describe SessionsController do
before do
request.env["omniauth.auth"] = OmniAuth.config.mock_auth[:identity]
@person = Fabricate.build(:person)
end
it "should create authentication" do
assert_difference('Person.count') do
post :create, :provider => "identity"
end
assert_redirected_to root_path @person
end
end
筆記試験で1点落ちたらどうしよう。あなたのアイデアをお待ちしています。前もって感謝します。
編集
minitest_helper.rb
require 'simplecov'
Simplecov.start
ENV["RAILS_ENV"] = "test"
require File.expand_path('../../config/environment', __FILE__)
require "minitest/autorun"
require "minitest/rails"
require "minitest/pride"
require 'database_cleaner'
require "minitest/rails/capybara"
require "minitest-mongoid"
DatabaseCleaner[:mongoid].strategy = :truncation
#OmniAuth.config.test_mode = true
OmniAuth.config.add_mock(:identity, {
:uid => '12345'
})
class MiniTest::Spec
before :each do
DatabaseCleaner.start
end
after :each do
DatabaseCleaner.clean
end
end