diff options
author | Xavier Noria <fxn@hashref.com> | 2009-03-15 21:31:20 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-03-15 21:31:20 +0100 |
commit | a4b1ccec5c1df24c8f9a18c599575e7263624ac4 (patch) | |
tree | a56e75b4524fb3f5c77b7a1e791174d8a624e1bb /railties/guides/source/testing.textile | |
parent | 20dc236bbda1a6c810878c50376e12aff6e6325e (diff) | |
download | rails-a4b1ccec5c1df24c8f9a18c599575e7263624ac4.tar.gz rails-a4b1ccec5c1df24c8f9a18c599575e7263624ac4.tar.bz2 rails-a4b1ccec5c1df24c8f9a18c599575e7263624ac4.zip |
revised links in guides according to W3C link checker report
Diffstat (limited to 'railties/guides/source/testing.textile')
-rw-r--r-- | railties/guides/source/testing.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/testing.textile b/railties/guides/source/testing.textile index 7959b767f6..12fc836edf 100644 --- a/railties/guides/source/testing.textile +++ b/railties/guides/source/testing.textile @@ -142,7 +142,7 @@ In Rails, unit tests are what you write to test your models. For this guide we will be using Rails _scaffolding_. It will create the model, a migration, controller and views for the new resource in a single operation. It will also create a full test suite following Rails best practices. I will be using examples from this generated code and would be supplementing it with additional examples where necessary. -NOTE: For more information on Rails _scaffolding_, refer to "Getting Started with Rails":../getting_started_with_rails.html +NOTE: For more information on Rails _scaffolding_, refer to "Getting Started with Rails":getting_started.html When you use +script/generate scaffold+, for a resource among other things it creates a test stub in the +test/unit+ folder: @@ -582,7 +582,7 @@ assert_select "ol" do end </ruby> -The +assert_select+ assertion is quite powerful. For more advanced usage, refer to its "documentation":http://api.rubyonrails.com/classes/ActionController/Assertions/SelectorAssertions.html. +The +assert_select+ assertion is quite powerful. For more advanced usage, refer to its "documentation":http://api.rubyonrails.org/classes/ActionController/Assertions/SelectorAssertions.html. h5. Additional View-Based Assertions |