Commenting out default generated fixtures

Hello all,

A newly created fixture file by Rails generators contains some fixtures
by
default with keys ‘one’ and ‘two’.
If I add any null constraint on some column in that table and try to run
tests then it fails. Because Rails tries
to insert records with null values on columns having not-null
constraint.

What do you think about adding the fixtures through generators but
commenting them. So when I actually want
to use those fixtures, I will go into fixtures file and uncomment the
existing ones or add new ones.
Right now it becomes a little painful to see build failing just because
of
those fixtures.

Thanks.


./prathamesh
GITHUB https://github.com/prathamesh-sonpatki Blog
http://prathamesh-sonpatki.github.com

On 11/16/2014 07:52 AM, Prathamesh Sonpatki wrote:

to use those fixtures, I will go into fixtures file and uncomment the
existing ones or add new ones.
Right now it becomes a little painful to see build failing just
because of those fixtures.

Thanks.


./prathamesh
Its your code. Do with it whatever make sense. The generators are only
there to make life easier by quickly giving you the outline of a
system. If what they create does not really fit what you are doing,
change it to match your needs.

Norm