Initial import.

This commit is contained in:
Kenneth Reitz
2010-11-07 05:14:40 -05:00
commit 2357f0ba6d
133 changed files with 32578 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env python
import sys
import nose
if __name__ == '__main__':
nose_args = sys.argv + [r'-m',
r'((?:^|[b_.-])(:?[Tt]est|When|describe|should|it))',
r'--with-doctest',
r'--doctest-extension=']
nose.run(argv=nose_args)