mirror of
https://github.com/gryf/ferrit.git
synced 2026-02-07 16:55:47 +01:00
14 lines
299 B
Python
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)
|