mirror of
https://github.com/kennethreitz-archive/python-convore.git
synced 2026-06-05 15:30:18 +00:00
27 lines
433 B
Python
27 lines
433 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import unittest
|
|
|
|
import convore
|
|
|
|
|
|
class ConvoreTestSuite(unittest.TestCase):
|
|
"""Requests test cases."""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_convore_login(self):
|
|
convore.login('requeststest', 'requeststest')
|
|
self.assertEqual(convore.account_verify(), True)
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|