~yeliabmas/sloecode/wiki-merge-proposal

« back to all changes in this revision

Viewing changes to sloecode/tests/test_hacking.py

Merged code to improve unit tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from unittest import TestCase
2
 
 
3
 
 
4
 
class TestTest(TestCase):
5
 
    """
6
 
    A test to make sure our tests work.
7
 
    """
8
 
 
9
 
    def test_will_pass(self):
10
 
        "This test will always pass."
11
 
        self.assertTrue(True, 'all is good.')
12
 
 
13