Index: README.rst
===================================================================
--- README.rst	(revision 8)
+++ README.rst	(revision 11)
@@ -36,10 +36,9 @@
 
 
-Running the tests of this python module:
-----------------------------------------
+Running pyenvjasmine tests
+--------------------------
 
-To run the tests on this code here (as opposed to *your* JavaScript
-code you want to test), install this into a virtualenv, install
-nose and maybe coverage in that virtualenv and then run::
+To run the tests on this code here (as opposed to *your* JavaScript code you
+want to test), install pyenvjasmine and then run::
 
     nosetests --cover-package=pyenvjasmine --cover-erase \
@@ -51,7 +50,7 @@
    run::
 
-     nosetests
+     nosetests -c nose.cfg
 
-   to run the tests.
+   to run the tests from within the pyenvjasmine sources directory.
 
 
@@ -59,10 +58,10 @@
 ------------------
 
-The easiest way is to put your "specs" (JavaScript tests) into
-some directory in your code, then in your python tests, add a new
-TestCase with just one test that runs all your JavaScript tests.
+The easiest way is to put your "specs" (JavaScript tests) into some directory
+in your code, then in your python tests, add a new TestCase with just one test
+that runs all your JavaScript tests.
 
-The simplest solution is to set capture_output to False, so you see
-the output from the js tests on the console. Something like this::
+The simplest solution is to set capture_output to False, so you see the output
+from the js tests on the console. Something like this::
 
     import unittest
@@ -77,8 +76,12 @@
 
 
-If you want a more integrated
-test control, you could set capture_output to True, then parse the test
-output that is returned from the run() method, with something like this::
+If you want a more integrated test control, you could set capture_output to
+True, then parse the test output that is returned from the run() method, with
+something like this::
 
+    import unittest
+    from pyenvjasmine.runner import TestRunner
+
+    class JavaScriptTests(unittest.TestCase):
         def test_my_javascript_no_output(self):
             runner = TestRunner(
