kopia lustrzana https://github.com/micropython/micropython-lib
14 wiersze
154 B
Python
14 wiersze
154 B
Python
![]() |
import unittest
|
||
|
|
||
|
|
||
|
def broken_func():
|
||
|
raise ValueError("uh oh!")
|
||
|
|
||
|
|
||
|
def test_func():
|
||
|
broken_func()
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
unittest.main()
|