mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-05 02:24:21 -05:00
9 lines
185 B
Python
9 lines
185 B
Python
import unittest
|
|
|
|
from chia.util.setproctitle import setproctitle
|
|
|
|
|
|
class TestSetProcTitle(unittest.TestCase):
|
|
def test_does_not_crash(self):
|
|
setproctitle("chia test title")
|