### 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
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