我目前正在通過Michael Hartl的Ruby on Rails教程,並且在本教程的第3.2.2節中,他將談論如何使用RSpec來測試頁面的標題。我的測試(我自己寫的,跟着他的教程)一直沒有通過標題測試(它可以找到標籤,但標題總是一個空白字符串),並且Google上的一些搜索告訴我,我需要包含函數render_views以通過測試。我的問題是無論我嘗試什麼,RSpec都會爲render_vie
我有以下資源(CONFIG/routes.rb中) resources :dashboard
dashboard_index GET /dashboard(.:format) dashboard#index
POST /dashboard(.:format) dashboard#create
new_dashboard GET /dashboard/n
創建主題helper方法在rpsec 2.12我預計這個輔助方法定義的工作: module X
private
def build_them(type)
puts 'Catching the star'
end
end
context 'public/private instance methods' do
subject{ Class.new { e
我在我的模型中有代碼。 class Foo < ActiveRecord::Base
after_create :create_node_for_foo
def create_node_for_user
FooBar.create(id: self.id)
end
end
,並有代碼美孚模型 describe Foo do
let (:foo)