testing/cheat-sheet.md: Split Nose-specific stuff into nose/cheat-sheet.md
[swc-testing-nose.git] / testing / nose / cheat-sheet.md
1 Unittest
2 --------
3
4 * extending TestCase
5 * assertions, e.g. self.assertEquals
6
7 Nose
8 ----
9
10 * invocation: nosetests
11 * naming conventions: test_*
12 * fixtures: setup
13 * per-test fixtures with @with_setup decorator
14 * assertions, e.g. assert_equal, assert_almost_equal...