[rspec-users] ????? lots of Q's about integration tests with rspec

2008-10-20 Thread Rasmus Rasmussen
Hello all, where should I put the integration tests when using rspec? There is an integration-folder in test-directory, but if I place tests here then how can I benefit from the fixtures-dir in spec-folder? I want to stay in the spec-folder, right? I do not want to maintain two fixtures. I'm not

Re: [rspec-users] Where are those tables listed for fixtures?

2008-10-18 Thread Rasmus Rasmussen
Stephen Eley wrote: > On Fri, Oct 17, 2008 at 3:28 PM, Rasmus Rasmussen <[EMAIL PROTECTED]> > wrote: >> >> this feels like a duplication. If I write rspec-tests I should not do >> ordinary tests, because then I need to maintain two fixtures. Right? > > C

Re: [rspec-users] Where are those tables listed for fixtures?

2008-10-17 Thread Rasmus Rasmussen
Rasmus Rasmussen wrote: > Zach Dennis wrote: >> Do you still have "works.yml" in your fixtures/ directory? If so >> you'll need to rename that to "work_periods.yml". >> >> Zach, you are right, there is another fixture under "test"

Re: [rspec-users] Where are those tables listed for fixtures?

2008-10-17 Thread Rasmus Rasmussen
Zach Dennis wrote: > Do you still have "works.yml" in your fixtures/ directory? If so > you'll need to rename that to "work_periods.yml". > > Zach > > On Fri, Oct 17, 2008 at 2:46 PM, Rasmus Rasmussen <[EMAIL PROTECTED]> > wrote: >

[rspec-users] Where are those tables listed for fixtures?

2008-10-17 Thread Rasmus Rasmussen
I'm sorry if this is posted in wrong forum. I am new to all of this with rails and rspec. Something got messed up when I changed a table's name from 'works' to 'work_periods'. Now the fixture:load thing does not work. Obviously the old table is still in there in some file. Anyone have any idea on