mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
12 lines
283 B
Python
12 lines
283 B
Python
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)
|