Rails stack tests for unicorn_rails
commitaba465e9d196737b07786a759ba320c89ae31c2e
authorEric Wong <normalperson@yhbt.net>
Wed, 1 Apr 2009 00:34:10 +0000 (31 17:34 -0700)
committerEric Wong <normalperson@yhbt.net>
Wed, 1 Apr 2009 02:00:21 +0000 (31 19:00 -0700)
tree112b91937c258682b4d307a64775ac01cf0f1bcf
parent3adce6a1a803a00cb5cc9da758a10a658aab98ec
Rails stack tests for unicorn_rails

Very preliminary for now.  Basically just sets up a basic
controller and response.  Requires git to clone the official
Rails repository.
55 files changed:
.gitignore
GNUmakefile
test/rails/app-1.2.3/.gitignore [new file with mode: 0644]
test/rails/app-1.2.3/app/controllers/application.rb [new file with mode: 0644]
test/rails/app-1.2.3/app/controllers/foo_controller.rb [new file with mode: 0644]
test/rails/app-1.2.3/app/helpers/application_helper.rb [new file with mode: 0644]
test/rails/app-1.2.3/config/boot.rb [new file with mode: 0644]
test/rails/app-1.2.3/config/database.yml [new file with mode: 0644]
test/rails/app-1.2.3/config/environment.rb [new file with mode: 0644]
test/rails/app-1.2.3/config/environments/development.rb [new file with mode: 0644]
test/rails/app-1.2.3/config/environments/production.rb [new file with mode: 0644]
test/rails/app-1.2.3/config/routes.rb [new file with mode: 0644]
test/rails/app-1.2.3/db/.gitignore [new file with mode: 0644]
test/rails/app-1.2.3/public/404.html [new file with mode: 0644]
test/rails/app-1.2.3/public/500.html [new file with mode: 0644]
test/rails/app-2.0.2/.gitignore [new file with mode: 0644]
test/rails/app-2.0.2/app/controllers/application.rb [new file with mode: 0644]
test/rails/app-2.0.2/app/controllers/foo_controller.rb [new file with mode: 0644]
test/rails/app-2.0.2/app/helpers/application_helper.rb [new file with mode: 0644]
test/rails/app-2.0.2/config/boot.rb [new file with mode: 0644]
test/rails/app-2.0.2/config/database.yml [new file with mode: 0644]
test/rails/app-2.0.2/config/environment.rb [new file with mode: 0644]
test/rails/app-2.0.2/config/environments/development.rb [new file with mode: 0644]
test/rails/app-2.0.2/config/environments/production.rb [new file with mode: 0644]
test/rails/app-2.0.2/config/routes.rb [new file with mode: 0644]
test/rails/app-2.0.2/db/.gitignore [new file with mode: 0644]
test/rails/app-2.0.2/public/404.html [new file with mode: 0644]
test/rails/app-2.0.2/public/500.html [new file with mode: 0644]
test/rails/app-2.2.2/.gitignore [new file with mode: 0644]
test/rails/app-2.2.2/app/controllers/application.rb [new file with mode: 0644]
test/rails/app-2.2.2/app/controllers/foo_controller.rb [new file with mode: 0644]
test/rails/app-2.2.2/app/helpers/application_helper.rb [new file with mode: 0644]
test/rails/app-2.2.2/config/boot.rb [new file with mode: 0644]
test/rails/app-2.2.2/config/database.yml [new file with mode: 0644]
test/rails/app-2.2.2/config/environment.rb [new file with mode: 0644]
test/rails/app-2.2.2/config/environments/development.rb [new file with mode: 0644]
test/rails/app-2.2.2/config/environments/production.rb [new file with mode: 0644]
test/rails/app-2.2.2/config/routes.rb [new file with mode: 0644]
test/rails/app-2.2.2/db/.gitignore [new file with mode: 0644]
test/rails/app-2.2.2/public/404.html [new file with mode: 0644]
test/rails/app-2.2.2/public/500.html [new file with mode: 0644]
test/rails/app-2.3.2.1/.gitignore [new file with mode: 0644]
test/rails/app-2.3.2.1/app/controllers/application_controller.rb [new file with mode: 0644]
test/rails/app-2.3.2.1/app/controllers/foo_controller.rb [new file with mode: 0644]
test/rails/app-2.3.2.1/app/helpers/application_helper.rb [new file with mode: 0644]
test/rails/app-2.3.2.1/config/boot.rb [new file with mode: 0644]
test/rails/app-2.3.2.1/config/database.yml [new file with mode: 0644]
test/rails/app-2.3.2.1/config/environment.rb [new file with mode: 0644]
test/rails/app-2.3.2.1/config/environments/development.rb [new file with mode: 0644]
test/rails/app-2.3.2.1/config/environments/production.rb [new file with mode: 0644]
test/rails/app-2.3.2.1/config/routes.rb [new file with mode: 0644]
test/rails/app-2.3.2.1/db/.gitignore [new file with mode: 0644]
test/rails/app-2.3.2.1/public/404.html [new file with mode: 0644]
test/rails/app-2.3.2.1/public/500.html [new file with mode: 0644]
test/rails/test_rails.rb [new file with mode: 0644]