mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
cleanup
This commit is contained in:
parent
287b6e8158
commit
349883b74c
1 changed files with 6 additions and 7 deletions
|
@ -1,14 +1,12 @@
|
||||||
import unittest
|
import unittest
|
||||||
from unittest.mock import patch, MagicMock
|
|
||||||
from aider.help import Help
|
from aider.help import Help
|
||||||
|
|
||||||
|
|
||||||
class TestHelp(unittest.TestCase):
|
class TestHelp(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self.help = Help()
|
|
||||||
|
|
||||||
def test_init(self):
|
def test_init(self):
|
||||||
self.assertIsNotNone(self.help.retriever)
|
help_inst = Help()
|
||||||
|
self.assertIsNotNone(help_inst.retriever)
|
||||||
|
|
||||||
def test_ask_without_mock(self):
|
def test_ask_without_mock(self):
|
||||||
help_instance = Help()
|
help_instance = Help()
|
||||||
|
@ -28,5 +26,6 @@ class TestHelp(unittest.TestCase):
|
||||||
# Assert that there are more than 5 <doc> entries
|
# Assert that there are more than 5 <doc> entries
|
||||||
self.assertGreater(result.count("<doc"), 5)
|
self.assertGreater(result.count("<doc"), 5)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue