2013-02-17 32 views
0

我顯然在運行測試之前在客戶模型中添加了一個名爲ct_ratio的新字段。當我現在對我的發票規範運行測試,他們沒有用 「沒有方法錯誤,ct_ratio =」Rspec no方法錯誤分配

Customer.rb

class Customer < ActiveRecord::Base 
attr_accessible :billing_address, :customer_currency, :email, :first_name, :last_name, :mobile, :name, :payment_terms, :phase_type, :readings_attributes, :pays_vat, :ct_ratio 
    before_validation do 
self.ct_ratio ||= 1 
end 
end 

Invoice_spec

describe Invoice do 

context 'create_item_from_readings' do 
before :each do 
    @customer = FactoryGirl.create :customer 
    @reading1 = @customer.readings.create! reading1: 100, date_of_reading: 30.days.ago 
    @reading2 = @customer.readings.create! reading1: 200, date_of_reading: 20.days.ago 
    @reading3 = @customer.readings.create! reading1: 500, date_of_reading: 10.days.ago 
    @customer.stub(:unit_cost).and_return(100) 
end 

it "should create an invoice item for all reading" do 
    invoice = Invoice.new customer: @customer, invoice_date: 15.days.ago, due_date: Date.today 

    item = invoice.create_item_from_readings 
    item.rate.should == 100 
    item.amount.should == 100 * 100 
    item.description.should == "Electricity used from #{@reading1.date_of_reading.strftime('%d/%m/%Y')} to #{@reading2.date_of_reading.strftime('%d/%m/%Y')} - 100 units" 
end 

我加ct_ratio到工廠女孩

require 'factory_girl' 

FactoryGirl.define do 

factory :customer do 
name 'Test Test' 
first_name "Test" 
last_name "Test" 
mobile "00000000" 
billing_address "Kampala" 
payment_terms "Immediate" 
phase_type "Single Phase" 
customer_currency "UGX" 
pays_vat false 
email "[email protected]" 
ct_ratio 1 
end 

factory :reading do |f| 
f.reading1 100 
f.reading2 150 
f.reading3 200 
f.date_of_reading 30.days.ago 
end 

end 
+1

你「*顯然*增加了一個新的領域」?你添加了它還是沒有添加它? – 2013-02-17 07:26:41

+0

@shioyama我添加了一個新字段ct_ratio並將其添加到工廠女孩 – zurik 2013-02-17 10:06:12

回答

0

這是在未通過rake運行測試時發生的常見錯誤,並且您的遷移是否運行在測試數據庫上。

運行RAILS_ENV=test rake db:migrate首先檢查你的測試套件。

+0

我應該如何檢查我的測試套件 – zurik 2013-02-17 14:45:47