mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-06 10:04:59 -05: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")
|