summaryrefslogtreecommitdiff
path: root/doc/source/usage.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/usage.rst')
-rw-r--r--doc/source/usage.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/source/usage.rst b/doc/source/usage.rst
index de775e6..a8ccdc4 100644
--- a/doc/source/usage.rst
+++ b/doc/source/usage.rst
@@ -4,4 +4,10 @@ Usage
To use in a project::
- import test \ No newline at end of file
+ from oslotest import base
+
+
+ class MyTest(base.BaseTestCase):
+
+ def test_something(self):
+ self.assertTrue(True)