Tidy section on other assertions in Nose.
authorBen Waugh <b.waugh@ucl.ac.uk>
Fri, 12 Apr 2013 09:53:26 +0000 (10:53 +0100)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 20:49:37 +0000 (13:49 -0700)
python/testing/cheat-sheet.md

index 0d6eac8d042e4698f580ff64b16b07cf3239bc29..65c521b4c6982230760363b801052f210003ddcd 100644 (file)
@@ -60,12 +60,6 @@ There are some additional rules, and you can configure your own, but this should
 ### Other assertions
 
 Nose provides a range of assertions that can be used when a test is not just checking a simple equality, e.g.
-* assertTrue, assertFalse
-* assertIn, assertNotIn
-* assertIs, assertIsNot
-* assertRaises
-* (what else?)
-
 
     from nose.tools import assert_items_equal
 
@@ -76,6 +70,12 @@ Nose provides a range of assertions that can be used when a test is not just che
         expected = [2, 3]
         assert_items_equal(observed, expected) # order of factors is not guaranteed
 
+* assertTrue, assertFalse
+* assertIn, assertNotIn
+* assertIs, assertIsNot
+* assertRaises
+* (what else?)
+
 ### Floating point tests
 
 When comparing floating-point numbers for equality, allow some tolerance for small differences due to