Files
growstuff/spec/models/product_spec.rb
2016-11-26 12:06:02 +13:00

9 lines
177 B
Ruby

require 'rails_helper'
describe Product do
it "stringifies using the name" do
@product = FactoryGirl.create(:product)
@product.to_s.should eq @product.name
end
end