mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
fix: Update is_important function tests for README.md paths
This commit is contained in:
parent
99ec8e5927
commit
cf67a86280
1 changed files with 2 additions and 2 deletions
|
@ -53,9 +53,9 @@ def test_is_important_case_sensitivity():
|
||||||
|
|
||||||
def test_is_important_with_paths():
|
def test_is_important_with_paths():
|
||||||
# Test with different path formats
|
# Test with different path formats
|
||||||
assert is_important("project/README.md")
|
assert not is_important("project/README.md")
|
||||||
assert is_important("./README.md")
|
assert is_important("./README.md")
|
||||||
assert is_important("/absolute/path/to/README.md")
|
assert not is_important("/absolute/path/to/README.md")
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue