Hi all !!
I have this code:
require ‘account’
describe Account, “when first created” do
before do
@account = Account.new
end
it “should have a balance of $0” do
@account.balance.should eql(Money.new(0, :dollars))
end
after do
@account = nil
end
end
How can I pass the @account.balance.should eql(Money.new(0, :dollars))
spec. From my understanding you .eql? in ruby is true if the object
are the same (reference points to same object) or if one inherits the
other.
But still can make it work.
Thanks !