This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'spork' | |
require 'factory_girl' | |
Spork.prefork do | |
# Loading more in this block will cause your tests to run faster. However, | |
# if you change any configuration or code from libraries loaded here, you'll | |
# need to restart spork for it take effect. | |
unless defined? SPREE_ROOT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# factories.rb | |
Factory.define :app do |i| | |
i.association :sku, :factory => :sku | |
i.base_vehicle_id BaseVehicle.last.id | |
end | |
# base_vehicle.rb | |
class BaseVehicle < ActiveRecord::Base | |
self.establish_connection :special_connection | |
end |
NewerOlder