Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# Currently there is no class manager. In Composite pattern
# the manager is part of "staff". Perhaps, this could grow into a
# separate class on its own
# import unittest
# from manager import Manager
#
#
# class TestManager(unittest.TestCase):
#
# def setUp(self):
# print("setup")
# self.__manager = Manager()
# self.__email = ""
#
#
# def tearDown(self):
# print("teardown")
# del self.__manager
#
#
# if __name__ == '__main__':
# unittest.main()