aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rackup_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Solve the RAILS_ENV problem in the railties tests in a more generic wayJon Leighton2011-06-061-3/+1
|
* Force RAILS_ENV=development in rackup_test.rb. This fixes a problem on the ↵Jon Leighton2011-06-041-0/+6
| | | | CI server. For some reason the RAILS_ENV on the CI server is production, which means that the ActionDispatch::Static middleware is not used, and so the request in 'config.ru can be racked up' returns a 404 rather than a 200.
* Remove deprecated dispatch test.José Valim2010-09-021-7/+0
|
* Fix typo on rackup test (ht: pleax)José Valim2010-05-201-1/+1
|
* Final iteration of use better testing methodsNeeraj Singh2010-05-191-2/+2
| | | | | | [#4652 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Refactor railties test, break huge files in smaller chunks and move ↵José Valim2010-01-261-0/+46
initializers to application folder.