Fixtures on fixtures

Hello, Is there some way to access other fixtures' records by name in one fixture ? I have a complex set of relationships and I'd like to be able to do: order: id: 1 person: persons(:john) # defined on the people fixtures

instead of order: id: 1 person_id: 1 # john

Is that possible ? Thank you.