- Be critical! I won't take it personally!
- Thou shalt always weakify strongify! (i.e. reviewer spots dumb things)
- Suggest alternatives and share knowledge.
- Build and run code locallly.
- Take your time to review.
- Try to spot missing tests.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
A more pythonic unittest TestCase that allows you to follow PEP8 | |
conventions and use self.assert_equal(A, B) instead of self.assertEqual(A, B) | |
""" | |
import unittest | |