Skip to content

Instantly share code, notes, and snippets.

@Heavyblade
Created August 30, 2013 15:31
Show Gist options
  • Select an option

  • Save Heavyblade/6391059 to your computer and use it in GitHub Desktop.

Select an option

Save Heavyblade/6391059 to your computer and use it in GitHub Desktop.
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :property do
end
factory :office_property do
building_size 300
land_area 200
number_of_floors 2
occupancy 10
noi 10
tenancy_type "single"
avg_lease_term 2
end
factory :land_property do
land_area 300
zoning "something"
end
factory :address do
street "1st stree some place"
city "Los Angeles"
state "CA"
zip "0001"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment