mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-07 13:15:21 +00:00
9 lines
219 B
Python
9 lines
219 B
Python
{main!; TestCase!} = pyimport "unittest"
|
|
|
|
Test! = Inherit TestCase!
|
|
Test!.
|
|
# demangling is necessary because Python gets the method name for the test run
|
|
'test_one' self =
|
|
self.assertEqual 1, 1
|
|
|
|
main!()
|