test_Departments.py 553 Bytes
import unittest
from atdd.PcApiTest import PcApiTest


class Departments(PcApiTest):
    def setUp(self):
        self.do_login(self.host, self.mobile, self.psw, self.domain)

    # 获取当前用户的所在部门及子部门
    def test_Departments(self):
        interfaceUrl = "/Assistant/Api/Integral/Departments"
        data = {
        }
        result = self.PcApiTest(interfaceUrl, data)
        print(self.host + "/" + self.domain + interfaceUrl)
        print(result)
        return result


if __name__ == '__main__':
    unittest.main()