Created
August 30, 2013 15:31
-
-
Save Heavyblade/6391059 to your computer and use it in GitHub Desktop.
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
| # 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