anki-connect/tests/test_misc.py
2017-08-29 01:21:32 -03:00

10 lines
273 B
Python

# -*- coding: utf-8 -*-
import unittest
from unittest import TestCase
from util import callAnkiConnectEndpoint
class TestVersion(TestCase):
def test_version(self):
response = callAnkiConnectEndpoint({'action': 'version'})
self.assertEqual(4, response)