Add contributor guide and project usage docs

This commit is contained in:
2026-02-16 22:48:05 +09:00
parent 1e552f8c46
commit 87482efd6d
16 changed files with 671 additions and 1 deletions

11
tests/test_config.py Normal file
View File

@@ -0,0 +1,11 @@
"""Config 테스트."""
from lazy_enter.config import Config
def test_config_defaults():
config = Config()
assert config.default_shell == "claude"
assert config.pty_read_timeout == 5
assert config.output_buffer_interval == 2.0
assert config.max_message_length == 3000