summary refs log tree commit diff
path: root/tests/test_rust.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_rust.py')
-rw-r--r--tests/test_rust.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_rust.py b/tests/test_rust.py
new file mode 100644
index 0000000000..55d8b6b28c
--- /dev/null
+++ b/tests/test_rust.py
@@ -0,0 +1,11 @@
+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)