summary refs log tree commit diff
path: root/tests/test_rust.py
blob: 55d8b6b28cb4745b3ae6ae4346899096cca50e3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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)