Displaying 1 result from an estimated 1 matches for "userreview".
Did you mean:
peerreview
2005 Nov 22
1
model and controller namespace/structure
Hi all -
I have a large project that has about 100 tables in the database that
we want to test porting to Rails. My main issue right now is that
although I can tell rails to do something like:
generate model Review::UserReview
and
generate controller Review::UserReview
and rails will write out the correct directory packaging, all my unit
tests break because of their dependency on loading test_helper in the
directory immediately above "unit".
I played around with trying to tell ruby where the correct files ar...