我在String類中調用Array實例方法「shuffle」的實例方法。爲了讓我測試使用RSpec的方法,我想將它存根。 vowels = %w(a e i o u y)
vowels.shuffle
我想: Array.stub(:shuffle).and_return(%w(a e i o u y))
[].stub(:shuffle).and_return(%w(a e i o u
我試圖實現與rspec2和Rails3中一個特點,基本上我有我試圖創建一個帖子來測試Post模型的測試(我使用認證設備) 這是我的特點 spec/acceptance/new_post_feature_spec.rb
require 'spec_helper'
require 'rspec/example_steps'
feature "Creating a new post" do
這裏是我試圖去通過規範: context "when validating format of attributes" do
it { should validate_numericality_of(:price).greater_than_or_equal_to(0.01) }
end
我已經rspec和shoulda-matchers安裝。但我正在逐漸undefined met
我在測試新手,使用RSpec的,需要一些幫助: 我有共同的例子組: shared_examples_for 'request which do something' do |opts = {}|
respond.should redirect_to(opts[:redirect_to])
end
在我的規格文件: describe "behavior" do
it_sho