Rebrand the Rust client crate (coven/ → hh/, package+binary "hack-house"), README, CLI strings, and branch (coven → hack-house). Gitea repo renamed cmd-chat → hack-house to match. Crypto/server logic unchanged; selftest + golden-vector test still green, binary is now `hack-house`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
13 lines
379 B
Python
13 lines
379 B
Python
from setuptools import _scripts
|
|
|
|
|
|
class TestWindowsScriptWriter:
|
|
def test_header(self):
|
|
hdr = _scripts.WindowsScriptWriter.get_header('')
|
|
assert hdr.startswith('#!')
|
|
assert hdr.endswith('\n')
|
|
hdr = hdr.lstrip('#!')
|
|
hdr = hdr.rstrip('\n')
|
|
# header should not start with an escaped quote
|
|
assert not hdr.startswith('\\"')
|