1
0
mirror of https://github.com/gryf/ferrit.git synced 2026-02-07 16:55:47 +01:00
Files
ferrit/tests/test_patchest_created.py

14 lines
308 B
Python

import json
from tests import base
class TestPatchsetCreated(base.BaseTestCase):
def test_send_patch(self):
result = self._send_and_get_response('patchset-created')
self.assertTrue(result)
result = json.loads(result)
self.assertEqual(result['labels']['Verified'], 1)