[Rails] Fixture data not saved into test database

2009-06-26 Thread pixelhandler
I am using Authlogic for user authentecation and create a users.yml for fuctional testing. My unit tests pass, but functional tests fail; since the fixture data wasn't saved to the test database. I get errors like: StandardError: No fixture with name ... I few weeks back... the users.yml file wa

[Rails] Re: mongrel / webrick process not shutting down properly in dev env. after ^C

2008-11-30 Thread pixelhandler
FYI - I found a way to stop the process... http://railstips.org/2007/2/12/oops-i-did-it-again comand line... (shows your process) ps aux | grep script/server sudo kill -9 (kill your process X is the PID) On Nov 29, 2:40 pm, pixelhandler <[EMAIL PROTECTED]> wrote: > I'

[Rails] Re: How to go back to using webrick default server

2008-11-30 Thread pixelhandler
Or, just start your app: ruby script/server webrick On Nov 29, 7:12 pm, Mrmaster Mrmaster <[EMAIL PROTECTED] s.net> wrote: > Hi, > > I've installed mongrel to check it out and want to go back to using > webrick as default when i type server/script to run my server. How can I > do this? I know tha

[Rails] mongrel / webrick process not shutting down properly in dev env. after ^C

2008-11-29 Thread pixelhandler
I'm going thru a tutorial, Agile Web Development with Rails (v3)... I'm having an issue on my mac with the web server not quitting properly, mongrel / webrick process not shutting down properly in dev env. after ^C in terminal window. On subsequent attempts to restart the web server after quit..