diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-01-30 15:11:36 -0500 |
---|---|---|
committer | Jon Moss <maclover7@users.noreply.github.com> | 2016-01-30 15:11:36 -0500 |
commit | a00c36feea6c0271b5ad48a949ef294514fdef52 (patch) | |
tree | cf3ae5bf8e4474fc5ba69277ed28b356aceb88f2 /guides/source/testing.md | |
parent | 153438f74906317956bc81989bed89bb8183e47e (diff) | |
parent | d2bd7bba8e48d6c5aa0ceea4a5fcac0191e541b5 (diff) | |
download | rails-a00c36feea6c0271b5ad48a949ef294514fdef52.tar.gz rails-a00c36feea6c0271b5ad48a949ef294514fdef52.tar.bz2 rails-a00c36feea6c0271b5ad48a949ef294514fdef52.zip |
Merge pull request #23364 from maclover7/fix-23358
Small cleanup to Testing Guide
Diffstat (limited to 'guides/source/testing.md')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index f2acd4deb2..f4894d4c11 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -1264,7 +1264,7 @@ end Testing Time-Dependent Code --------------------------- -Rails provides inbuilt helper methods that enable you to assert that your time-sensitive code works as expected. +Rails provides built-in helper methods that enable you to assert that your time-sensitive code works as expected. Here is an example using the [`travel_to`](http://api.rubyonrails.org/classes/ActiveSupport/Testing/TimeHelpers.html#method-i-travel_to) helper: |