testing/cheat-sheet.md: Split Nose-specific stuff into nose/cheat-sheet.md
authorW. Trevor King <wking@tremily.us>
Thu, 27 Jun 2013 11:37:55 +0000 (07:37 -0400)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 16:43:28 +0000 (09:43 -0700)
testing/cheat-sheet.md
testing/nose/cheat-sheet.md [new file with mode: 0644]

index dbc03e0ad6269732de881444a94783328b7a7fa4..0e9060a838f876b1b064563a1804986dfbc45c1b 100644 (file)
@@ -33,18 +33,3 @@ Assertions
 
 * syntax
 * stops execution
-
-Unittest
---------
-
-* extending TestCase
-* assertions, e.g. self.assertEquals
-
-Nose
-----
-
-* invocation: nosetests
-* naming conventions: test_*
-* fixtures: setup
-* per-test fixtures with @with_setup decorator
-* assertions, e.g. assert_equal, assert_almost_equal...
diff --git a/testing/nose/cheat-sheet.md b/testing/nose/cheat-sheet.md
new file mode 100644 (file)
index 0000000..fcfbb2f
--- /dev/null
@@ -0,0 +1,14 @@
+Unittest
+--------
+
+* extending TestCase
+* assertions, e.g. self.assertEquals
+
+Nose
+----
+
+* invocation: nosetests
+* naming conventions: test_*
+* fixtures: setup
+* per-test fixtures with @with_setup decorator
+* assertions, e.g. assert_equal, assert_almost_equal...