diff options
author | Andrew Ferk <andrewferk@gmail.com> | 2010-09-18 09:45:12 -0500 |
---|---|---|
committer | Andrew Ferk <andrewferk@gmail.com> | 2010-09-18 09:45:12 -0500 |
commit | a2fddff035112c83caaeed8803d94b2037f4a21a (patch) | |
tree | 319c06fcdc2d91c3d570b95c68c56cd98fd40723 /railties | |
parent | 97350eea03339fd43dd67565881cc70c16c04d79 (diff) | |
download | rails-a2fddff035112c83caaeed8803d94b2037f4a21a.tar.gz rails-a2fddff035112c83caaeed8803d94b2037f4a21a.tar.bz2 rails-a2fddff035112c83caaeed8803d94b2037f4a21a.zip |
Updated output that should be seen from the initial rake
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/plugins.textile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/railties/guides/source/plugins.textile b/railties/guides/source/plugins.textile index 585033d317..c358e0e1a5 100644 --- a/railties/guides/source/plugins.textile +++ b/railties/guides/source/plugins.textile @@ -254,16 +254,18 @@ You should see output like: -> 0.0220s -- create_table(:wickwalls, {:force=>true}) -> 0.0077s +-- create_table(:woodpeckers, {:force=>true}) + -> 0.0069s -- initialize_schema_migrations_table() -> 0.0007s --- assume_migrated_upto_version(0) +-- assume_migrated_upto_version(0, "db/migrate") -> 0.0007s Loaded suite /opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader Started . Finished in 0.002236 seconds. -1 test, 1 assertion, 0 failures, 0 errors +1 test, 2 assertion, 0 failures, 0 errors, 0 skips </shell> By default the setup above runs your tests with sqlite or sqlite3. To run tests with one of the other connection strings specified in +database.yml+, pass the DB environment variable to rake: |