little description of regression and refactor

This commit is contained in:
David Halter
2013-03-01 00:23:13 +04:30
parent 669dfda419
commit c808bcef70
2 changed files with 9 additions and 0 deletions

View File

@@ -1,4 +1,8 @@
#!/usr/bin/env python #!/usr/bin/env python
"""
Refactoring tests work a little bit similar to Black Box tests. But the idea is
here to compare two versions of code.
"""
from __future__ import with_statement from __future__ import with_statement
import sys import sys
import os import os

View File

@@ -1,4 +1,9 @@
#!/usr/bin/env python #!/usr/bin/env python
"""
Unit tests to avoid errors of the past. Makes use of Python's ``unittest``
module.
"""
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import unittest import unittest
import time import time