blob: 55d8b6b28cb4745b3ae6ae4346899096cca50e3e (
plain) (
tree)
|
|
from synapse.synapse_rust import sum_as_string
from tests import unittest
class RustTestCase(unittest.TestCase):
"""Basic tests to ensure that we can call into Rust code."""
def test_basic(self):
result = sum_as_string(1, 2)
self.assertEqual("3", result)
|