public
Description: A Python wrapper to the Phanfare API
Homepage: http://altmansoftware.lighthouseapp.com/projects/10199-pyphanfare/overview
Clone URL: git://github.com/paltman/pyphanfare.git
Click here to lend your support to: pyphanfare and make a donation at www.pledgie.com !
pyphanfare / run_tests.py
100644 18 lines (14 sloc) 0.513 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import unittest
import doctest
 
suite = unittest.TestSuite()
 
import pyphanfare
import pyphanfare.connection
import pyphanfare.exceptions
import pyphanfare.models
import pyphanfare.config
 
suite.addTest(doctest.DocTestSuite(pyphanfare))
suite.addTest(doctest.DocTestSuite(pyphanfare.connection))
suite.addTest(doctest.DocTestSuite(pyphanfare.exceptions))
suite.addTest(doctest.DocTestSuite(pyphanfare.models))
suite.addTest(doctest.DocTestSuite(pyphanfare.config))
 
unittest.TextTestRunner(verbosity=2).run(suite)