我有以下: let(:update_request) { put "/api/v3/account/profile.json", attributes, credentials }
describe "PUT 'update'" do
before { update_request }
context "updating normal attributes (no pas
我正在使用FactoryGirl和Rspec編寫一些測試。 規格/工廠/ students.rb: FactoryGirl.define do
factory :student do
end
factory :student_with_profile_and_identity, class: 'Student' do
after(:create) do |
在Rspec控制器測試中,我想檢查我正在測試的控制器中的實例變量的值。 例如, 控制器: class ThingsController < ApplicationController
def index
@things = Thing.all
end
end
規格: RSpec.describe UsersController, type: :controlle