aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/pluginwriter/tests.rst
diff options
context:
space:
mode:
authorBen Sturmfels <ben@sturm.com.au>2016-09-18 00:48:32 +1000
committerBoris Bobrov <breton@cynicmansion.ru>2016-09-18 16:28:22 +0300
commit9650aa394bcb5f3b6f8a9c9e9b68a81fe77a41a7 (patch)
tree69297fa52f43b93efb2400649f2ab4cde12fb177 /docs/source/pluginwriter/tests.rst
parent821686372ccb18f508f20a1764236174c009573c (diff)
downloadmediagoblin-9650aa394bcb5f3b6f8a9c9e9b68a81fe77a41a7.tar.lz
mediagoblin-9650aa394bcb5f3b6f8a9c9e9b68a81fe77a41a7.tar.xz
mediagoblin-9650aa394bcb5f3b6f8a9c9e9b68a81fe77a41a7.zip
Spell-check the entire documentation.
Diffstat (limited to 'docs/source/pluginwriter/tests.rst')
-rw-r--r--docs/source/pluginwriter/tests.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/source/pluginwriter/tests.rst b/docs/source/pluginwriter/tests.rst
index fe99688f..560a8899 100644
--- a/docs/source/pluginwriter/tests.rst
+++ b/docs/source/pluginwriter/tests.rst
@@ -19,7 +19,7 @@ Here's a brief guide to writing unit tests for plugins. However, it
isn't really ideal. It also hasn't been well tested... yes, there's
some irony there :)
-Some notes: we're using py.test and webtest for unit testing stuff.
+Some notes: we're using py.test and WebTest for unit testing stuff.
Keep that in mind.
My suggestion is to mime the behavior of `mediagoblin/tests/` and put
@@ -44,7 +44,7 @@ In any test module in your tests directory you can then do::
# real code goes here
pass
-And you'll get a mediagoblin application wrapped in webtest passed in
+And you'll get a MediaGoblin application wrapped in WebTest passed in
to your environment.
If your plugin needs to define multiple configuration setups, you can
@@ -52,8 +52,8 @@ actually set up multiple fixtures very easily for this. You can just
set up multiple fixtures with different names that point to different
configs and pass them in as that named argument.
-To run the tests, from mediagoblin's directory (make sure that your
-plugin has been added to your mediagoblin checkout's virtualenv!) do::
+To run the tests, from MediaGoblin's directory (make sure that your
+plugin has been added to your MediaGoblin checkout's virtualenv!) do::
./runtests.sh /path/to/myplugin/tests/