test_AuthorityDel.py 704 Bytes


from atdd.PcPost import PcPost


class AuthorityDel(PcPost):

    interfaceUrl = "/Assistant/Apicp/Integral/AuthorityDel"

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

    '''
        @parameters:
        aaId	必填 	Int	 主键ID
    '''

    # 员工积分排名 权限范围删除,参数为空
    def test_AuthorityDel_None(self):
        result = self.PcPost(self.interfaceUrl)
        print(result)
        return result

    # 员工积分排名 权限范围删除
    def test_AuthorityDel(self):
        data = {
            "aaId": 16
        }
        result = self.PcPost(self.interfaceUrl, data)
        print(result)
        return result