mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
feat: add get_system_info method to Coder base class
This commit is contained in:
parent
b57468a963
commit
45855bd96c
2 changed files with 8 additions and 1 deletions
|
@ -628,7 +628,8 @@ class TestMain(TestCase):
|
|||
output=DummyOutput(),
|
||||
return_coder=True,
|
||||
)
|
||||
self.assertIn("Spanish", coder.get_system_info())
|
||||
system_info = coder.get_system_info()
|
||||
self.assertIn("Chat language: Spanish", system_info)
|
||||
|
||||
@patch("git.Repo.init")
|
||||
def test_main_exit_with_git_command_not_found(self, mock_git_init):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue