1
0
mirror of https://github.com/gryf/ferrit.git synced 2026-02-07 08:45:53 +01:00
Files
ferrit/tests/test_comment_added.py

14 lines
299 B
Python

import json
from tests import base
class TestCommentAdded(base.BaseTestCase):
def test_recheck(self):
result = self._send_and_get_response('comment-added')
self.assertTrue(result)
result = json.loads(result)
self.assertEqual(result['labels']['Verified'], 1)