aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-03-18 10:11:46 +0100
committerYves Senn <yves.senn@gmail.com>2015-03-18 10:11:46 +0100
commit848680015bca5704bb17be79948ce68d77e71f54 (patch)
tree80e2a9d8ee5f441e6cdef35c80783bae53720975
parent0a6873cbd9374fa91ca903e15a28475410d59313 (diff)
parent4fd571abe297fcb30adba8c77f26e1ff3177128c (diff)
downloadrails-848680015bca5704bb17be79948ce68d77e71f54.tar.gz
rails-848680015bca5704bb17be79948ce68d77e71f54.tar.bz2
rails-848680015bca5704bb17be79948ce68d77e71f54.zip
Merge pull request #19383 from mechanicles/use-consistent-example
Make example code consistent for better understanding. [ci skip]
-rw-r--r--guides/source/active_record_basics.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md
index 150f4c0f14..6551ba0389 100644
--- a/guides/source/active_record_basics.md
+++ b/guides/source/active_record_basics.md
@@ -173,18 +173,18 @@ name that should be used:
```ruby
class Product < ActiveRecord::Base
- self.table_name = "PRODUCT"
+ self.table_name = "my_products"
end
```
If you do so, you will have to define manually the class name that is hosting
-the fixtures (class_name.yml) using the `set_fixture_class` method in your test
+the fixtures (my_products.yml) using the `set_fixture_class` method in your test
definition:
```ruby
-class FunnyJoke < ActiveSupport::TestCase
- set_fixture_class funny_jokes: Joke
- fixtures :funny_jokes
+class ProductTest < ActiveSupport::TestCase
+ set_fixture_class my_products: Product
+ fixtures :my_products
...
end
```