aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/source/testing_rails_applications.txt
diff options
context:
space:
mode:
authorHongli Lai (Phusion) <hongli@phusion.nl>2008-11-04 16:45:50 +0100
committerHongli Lai (Phusion) <hongli@phusion.nl>2008-11-04 16:45:50 +0100
commit851a4dce1597a94975dcf42c4b53a4b548e44ebb (patch)
tree8bc3124eb6880dec8f6ae8b53f3dcb08b4b207ad /railties/doc/guides/source/testing_rails_applications.txt
parentbc0bc83b90316aa1b4ba157d9d6f88f1fab50883 (diff)
downloadrails-851a4dce1597a94975dcf42c4b53a4b548e44ebb.tar.gz
rails-851a4dce1597a94975dcf42c4b53a4b548e44ebb.tar.bz2
rails-851a4dce1597a94975dcf42c4b53a4b548e44ebb.zip
Remove invalid uses of [source, ...] in the guides.
Diffstat (limited to 'railties/doc/guides/source/testing_rails_applications.txt')
-rw-r--r--railties/doc/guides/source/testing_rails_applications.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/railties/doc/guides/source/testing_rails_applications.txt b/railties/doc/guides/source/testing_rails_applications.txt
index dc7635eff9..da756cb550 100644
--- a/railties/doc/guides/source/testing_rails_applications.txt
+++ b/railties/doc/guides/source/testing_rails_applications.txt
@@ -89,7 +89,6 @@ Fixtures can also be described using the all-too-familiar comma-separated value
A CSV fixture looks like this:
-[source, log]
--------------------------------------------------------------
id, username, password, stretchable, comments
1, sclaus, ihatekids, false, I like to say ""Ho! Ho! Ho!""
@@ -184,7 +183,6 @@ In Rails, unit tests are what you write to test your models.
When you create a model using +script/generate+, among other things it creates a test stub in the +test/unit+ folder, as well as a fixture for the model:
-[source, log]
-------------------------------------------------------
$ script/generate model Post
...
@@ -266,7 +264,6 @@ This will run all the test methods from the test case.
You can also run a particular test method from the test case by using the +-n+ switch with the +test method name+.
-[source, log]
-------------------------------------------------------
$ ruby unit/post_test.rb -n test_truth
@@ -292,7 +289,6 @@ end
If you haven't added any data to the test fixture for posts, this test will fail. You can see this by running it:
-[source, log]
-------------------------------------------------------
$ ruby unit/post_test.rb
Loaded suite unit/post_test
@@ -322,7 +318,6 @@ end
Running this test shows the friendlier assertion message:
-[source, log]
-------------------------------------------------------
$ ruby unit/post_test.rb
Loaded suite unit/post_test
@@ -354,7 +349,6 @@ end
Now you can see even more output in the console from running the tests:
-[source, log]
-------------------------------------------------------
$ ruby unit/post_test.rb
Loaded suite unit/post_test
@@ -817,7 +811,6 @@ In this test, +@expected+ is an instance of +TMail::Mail+ that you can use in yo
Here's the content of the +invite+ fixture:
-[source, log]
-------------------------------------------------
Hi friend@example.com,