tests: add preliminary Rails 3 tests
commite687ede9cd390b09bf1e87c6de18924ec57ff3c3
authorEric Wong <normalperson@yhbt.net>
Thu, 3 Jun 2010 23:01:20 +0000 (3 23:01 +0000)
committerEric Wong <normalperson@yhbt.net>
Thu, 3 Jun 2010 23:01:20 +0000 (3 23:01 +0000)
treec08e580f888dc3d8db9e1051602f64254ac705f6
parent8e55e561a1bcba57bf429c9c2111ec5351fcb1b3
tests: add preliminary Rails 3 tests

We'll be switching to Isolate and shell-based tests
since the old test/unit-based Rails test was basically
a shell script written in Ruby.
35 files changed:
.gitignore
Rakefile
t/GNUmakefile
t/rails3-app/.gitignore [new file with mode: 0644]
t/rails3-app/Gemfile [new file with mode: 0644]
t/rails3-app/Rakefile [new file with mode: 0644]
t/rails3-app/app/controllers/application_controller.rb [new file with mode: 0644]
t/rails3-app/app/helpers/application_helper.rb [new file with mode: 0644]
t/rails3-app/app/views/layouts/application.html.erb [new file with mode: 0644]
t/rails3-app/config.ru [new file with mode: 0644]
t/rails3-app/config/application.rb [new file with mode: 0644]
t/rails3-app/config/boot.rb [new file with mode: 0644]
t/rails3-app/config/database.yml [new file with mode: 0644]
t/rails3-app/config/environment.rb [new file with mode: 0644]
t/rails3-app/config/environments/development.rb [new file with mode: 0644]
t/rails3-app/config/environments/production.rb [new file with mode: 0644]
t/rails3-app/config/environments/test.rb [new file with mode: 0644]
t/rails3-app/config/initializers/backtrace_silencers.rb [new file with mode: 0644]
t/rails3-app/config/initializers/inflections.rb [new file with mode: 0644]
t/rails3-app/config/initializers/mime_types.rb [new file with mode: 0644]
t/rails3-app/config/initializers/secret_token.rb [new file with mode: 0644]
t/rails3-app/config/initializers/session_store.rb [new file with mode: 0644]
t/rails3-app/config/locales/en.yml [new file with mode: 0644]
t/rails3-app/config/routes.rb [new file with mode: 0644]
t/rails3-app/db/seeds.rb [new file with mode: 0644]
t/rails3-app/doc/README_FOR_APP [new file with mode: 0644]
t/rails3-app/lib/tasks/.gitkeep [new file with mode: 0644]
t/rails3-app/public/404.html [new file with mode: 0644]
t/rails3-app/public/500.html [new file with mode: 0644]
t/rails3-app/public/x.txt [new file with mode: 0644]
t/rails3-app/script/rails [new file with mode: 0755]
t/rails3-app/test/performance/browsing_test.rb [new file with mode: 0644]
t/rails3-app/test/test_helper.rb [new file with mode: 0644]
t/rails3-app/vendor/plugins/.gitkeep [new file with mode: 0644]
t/t0300-rails3-basic.sh [new file with mode: 0755]