diff --git a/test_humble.py b/test_humble.py new file mode 100755 index 0000000..8fb79c4 --- /dev/null +++ b/test_humble.py @@ -0,0 +1,37 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import os +import unittest + +import humble + + + +class HumbleTestSuite(unittest.TestCase): + """Humble test cases.""" + + def setUp(self): + pass + + def tearDown(self): + """Teardown.""" + pass + + def test_humble_works(self): + """Most ghetto test ever.""" + + os.system('./humbler kennethreitz') + + def test_get_user(self): + + user = humble.get_info_for('kennethreitz') + + user2 = humble.get_info_for('some_user_that_is_not_real') + + + def test_get_repos(self): + repos = humble.get_repos_for('kennethreitz') + +if __name__ == '__main__': + unittest.main() \ No newline at end of file