mirror of
https://github.com/gryf/ferrit.git
synced 2026-02-07 08:45:53 +01:00
14 lines
290 B
Python
14 lines
290 B
Python
import json
|
|
|
|
from tests import base
|
|
|
|
|
|
class TestChangeMerged(base.BaseTestCase):
|
|
|
|
def test_deploy(self):
|
|
result = self._send_and_get_response('change-merged')
|
|
|
|
self.assertTrue(result)
|
|
result = json.loads(result)
|
|
self.assertIn('--tag', result['message'])
|