Question: should model specs validate presence of foreign keys? or is that covered by relationship tests? what about testing for indirectly associated models?
Answer (Ian):
requiring validating presence of foreign keys as attributes can cause errors; should not do it
Only set up indirect associations when reaching a point in the project that requires it
Question: should model specs validate presence of foreign keys? or is that covered by relationship tests? what about testing for indirectly associated models?
Answer (Ian):