The following method works fine in the browser. All it does it takes all the associated transactions, and sums their total amounts together.
wallet.rb
has_many :transactions
# Sums the transaction amounts together
def total_spent
transactions.map(&:amount).sum
end
factories.rb
FactoryGirl.define do
# Create a wallet
factory :wallet do
title 'My wallet'
end
# Create a single transaction
factory :transaction do
association :wallet
title 'My transaction'
amount 15
end
end
wallet_spec.rb
it "should get the sum of the transactions" do
transaction = FactoryGirl.create(:transaction)
wallet = transaction.wallet
wallet.total_spent.should eq 15
end
The test keeps failing. I am receiving 0, but expecting 15 to be the correct amount. Again, this works fine in the browser!
Running Rails 3.2, FactoryGirl 4.2