aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-20 15:13:12 -0800
committerZachary Scott <e@zzak.io>2014-12-20 15:13:12 -0800
commit9ea0e37f724fc503f00b7a5303055138d93468ff (patch)
treee6bd02649dee88ffc9755eccab0487a740f51b53
parentbc24f19686d512a40f12473c1458a243bbf097e7 (diff)
downloadrails-9ea0e37f724fc503f00b7a5303055138d93468ff.tar.gz
rails-9ea0e37f724fc503f00b7a5303055138d93468ff.tar.bz2
rails-9ea0e37f724fc503f00b7a5303055138d93468ff.zip
"In PostgreSQL, just superusers.." => "In PostgreSQL, only superusers.."
[ci skip]
-rw-r--r--guides/source/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 6688d48a8b..3ca74fd112 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -122,7 +122,7 @@ Rails by default automatically loads all fixtures from the `test/fixtures` folde
* Load the fixture data into the table
* Dump the fixture data into a variable in case you want to access it directly
-TIP: In order to remove existing data from the database, Rails tries to disable referential integrity triggers (like foreign keys and check constraints). If you are getting annoying permission errors on running tests, make sure the database user has privilege to disable these triggers in testing environment. (In PostgreSQL, just superusers can disable all triggers. Read more about PostgreSQL permissions [here](http://blog.endpoint.com/2012/10/postgres-system-triggers-error.html))
+TIP: In order to remove existing data from the database, Rails tries to disable referential integrity triggers (like foreign keys and check constraints). If you are getting annoying permission errors on running tests, make sure the database user has privilege to disable these triggers in testing environment. (In PostgreSQL, only superusers can disable all triggers. Read more about PostgreSQL permissions [here](http://blog.endpoint.com/2012/10/postgres-system-triggers-error.html))
#### Fixtures are Active Record objects