你如何模擬一個屬性的validates :name, uniqueness: true回調? 我想象它會工作是這樣的: describe "with duplicate name" do
before { mock(subject.name).unique? { false } }
it "should be invalid" do
subject.should h
考慮下面的類和方法問題 class Order < ActiveRecord::Base
def check
if (self.user.phone == "55555555") do
self.a_certain_method
return
end
end
def a_certain_method
# Rea
我現在用的是考拉寶石讓Facebook請求,我有以下代碼: @graph = Koala::Facebook::API.new(oauth_token)
@graph.batch do |batch_api|
#... do stuff here
end
我想模擬出批量調用來模擬我們在那裏做的事情。 這是我在RR中的。 oauth_token= "Sometoke
我使用rr(模擬框架)和rspec與ruby-on-rails。另外,我正在使用集合短手進行局部渲染。我的問題:如何正確填寫以下視圖規範? describe 'my_view' do
before(:each) do
assigns[:models] = Array.new(10, stub(Model))
end
it "should render th