Skip to content

Instantly share code, notes, and snippets.

@adkron
Created January 16, 2009 15:28
Show Gist options
  • Save adkron/47962 to your computer and use it in GitHub Desktop.
Save adkron/47962 to your computer and use it in GitHub Desktop.
Factory.define(:rate_profile) do |rp|
rp.start_date(Date.today)
end
Factory.define(:rate) do |r|
r.value '120.00'
r.rate_profile { Factory :rate_profile }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment