import json

from ci.CIPayloadProcessor import CIPayloadProcessor


def test_ci():

    with open('test_ataklibs_action_queued.json') as json_file:
        CIPayloadProcessor().process(json_file.read())

    with open('test_ataklibs_action_success.json') as json_file:
        CIPayloadProcessor().process(json_file.read())


test_ci()
