mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-29 05:18:11 +03:00
8 lines
183 B
Python
8 lines
183 B
Python
import unittest
|
|
from src.util.setproctitle import setproctitle
|
|
|
|
|
|
class TestSetProcTitle(unittest.TestCase):
|
|
def test_does_not_crash(self):
|
|
setproctitle("chia test title")
|