diff options
| -rw-r--r-- | guides/source/testing.md | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/guides/source/testing.md b/guides/source/testing.md index e302611b2a..34c831c802 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -495,7 +495,8 @@ users(:david)  users(:david).id  # one can also access methods available on the User class -email(david.partner.email, david.location_tonight) +david = users(:david) +david.call(david.partner)  ```  To get multiple fixtures at once, you can pass in a list of fixture names. For example: | 
