Skip to content

Instantly share code, notes, and snippets.

@bkaney
Created October 3, 2008 15:01
Show Gist options
  • Save bkaney/14568 to your computer and use it in GitHub Desktop.
Save bkaney/14568 to your computer and use it in GitHub Desktop.
# Packages
Factory.sequence :package_tracking_number do |n|
"1Z9999W9999999999#{n}"
end
Factory.define :package do |p|
p.shipment { |shipment| shipment.association(:shipment) }
p.tracking_number { Factory.next(:package_tracking_number) }
p.vendor_type { |z| z.association(:package_fedex_envelope) }
p.weight 1.00
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment