Tagged Questions
0
votes
1answer
81 views
Testing Rails/Rack applications using rails console
My simplistic understanding of the Rails stack is that it does the following (in general)
The input is a HTTP message (GET, POST, PUT, DELETE, HEAD), a URL, some (optional) cookies, a (optional) ...
3
votes
1answer
235 views
How to update test database in Rails 3?
I added an entry to the yml fixture for a model. Then rails console test. But the new record is not in the database.
How do you "update" the test database to access it in rails console?
Working in ...