Updating all tests. All tests are passing

This commit is contained in:
Michael Bianco
2012-03-30 19:17:02 -04:00
parent 62082f5a82
commit c4a85b71d7
8 changed files with 13 additions and 8 deletions

View File

@@ -1,3 +1,3 @@
Factory.define :digital do |f|
Factory.define :digital, :class => Spree::Digital do |f|
f.variant { |p| p.association(:variant) }
end

View File

@@ -1,4 +1,4 @@
Factory.define :digital_link do |f|
Factory.define :digital_link, :class => Spree::DigitalLink do |f|
f.digital { |p| p.association(:digital) }
f.line_item { |p| p.association(:line_item) }
end

View File

@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../spec_helper'
describe DigitalLink do
describe Spree::DigitalLink do
context 'validation' do
it { should belong_to(:digital) }

View File

@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../spec_helper'
describe Digital do
describe Spree::Digital do
context 'validation' do
it { should belong_to(:variant) }

View File

@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../spec_helper'
describe LineItem do
describe Spree::LineItem do
context "#save" do
it "should create one link for a single digital Variant" do
@@ -17,6 +17,7 @@ describe LineItem do
links = digital_variant.digital.digital_links
links.all.size.should == 5
links.each { |link| link.line_item.should == line_item }
# quantity update
line_item.quantity = 8
line_item.save

View File

@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../spec_helper'
describe Order do
describe Spree::Order do
context 'validation' do
it { should have_valid_factory(:order) }