aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorRodrigo Rosenfeld Rosas <rr_rosas@yahoo.com.br>2009-03-13 10:10:00 -0300
committerRodrigo Rosenfeld Rosas <rr_rosas@yahoo.com.br>2009-03-13 10:10:00 -0300
commit626221d17c64b4cfb2807c7514de704c82c4c814 (patch)
tree08fcbb6ab696169e5cdb88c692edd712e92c3c58 /railties/guides
parent586ef2977bb7242a93f6b9f942eea1e09376511e (diff)
downloadrails-626221d17c64b4cfb2807c7514de704c82c4c814.tar.gz
rails-626221d17c64b4cfb2807c7514de704c82c4c814.tar.bz2
rails-626221d17c64b4cfb2807c7514de704c82c4c814.zip
Extra spaces on list items were generating wrong output in Testing guide.
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/testing.textile6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/testing.textile b/railties/guides/source/testing.textile
index 8e92c1cc77..1a6fd1eb2f 100644
--- a/railties/guides/source/testing.textile
+++ b/railties/guides/source/testing.textile
@@ -110,9 +110,9 @@ h5. Fixtures in Action
Rails by default automatically loads all fixtures from the 'test/fixtures' folder for your unit and functional test. Loading involves three steps:
- * Remove any existing data from the table corresponding to the fixture
- * Load the fixture data into the table
- * Dump the fixture data into a variable in case you want to access it directly
+* Remove any existing data from the table corresponding to the fixture
+* Load the fixture data into the table
+* Dump the fixture data into a variable in case you want to access it directly
h5. Hashes with Special Powers