#!/usr/bin/env python # -*- coding: utf-8 -*- """ test_client ----------- Tests for `modpypes.client` module. """ import unittest from modpypes import client class TestModpypes(unittest.TestCase): def setUp(self): pass def test_something(self): pass def tearDown(self): pass if __name__ == '__main__': unittest.main()