I have a fixtures file with ID's like this:
post_one:
id: 1
attr2: 'some_value'
post_two:
id: 2
attr3: 'some_other_value'
and so on.
Is there a way I could not have to type in the id's for each record, and have it be incremented automatically?
If you don't specify an id, it will hash the label and use that as the id. Some benefits of not specifying an id:
See this page in the documentation for more info on fixtures: http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html