I\'m trying to load up rails in the test environment using a ruby script. I\'ve tried googling a bit and found this recommendation:
require \"../../config/enviro
to start test environment you should run script/server with -e param:
-e
ruby script/server -e test
and in your config/database.yml must be defenition of test env database, i.e.:
test: adapter: sqlite3 database: db/test.sqlite3 pool: 5 timeout: 5000