mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
feat: Add properties language test case and fixture file
This commit is contained in:
parent
a503f291e7
commit
73eb8701dd
2 changed files with 15 additions and 0 deletions
|
@ -312,6 +312,7 @@ class TestRepoMapAllLanguages(unittest.TestCase):
|
|||
"chatito": ("chatito", "intent"),
|
||||
"commonlisp": ("lisp", "greet"),
|
||||
"pony": ("pony", "Greeter"),
|
||||
"properties": ("properties", "database.url"),
|
||||
}
|
||||
|
||||
fixtures_dir = Path(__file__).parent.parent / "fixtures" / "languages"
|
||||
|
|
14
tests/fixtures/languages/properties/test.properties
vendored
Normal file
14
tests/fixtures/languages/properties/test.properties
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Database Configuration
|
||||
database.url=jdbc:mysql://localhost:3306/mydb
|
||||
database.username=admin
|
||||
database.password=secret
|
||||
|
||||
# Application Settings
|
||||
app.name=My Application
|
||||
app.version=1.0.0
|
||||
app.debug=true
|
||||
|
||||
# Server Configuration
|
||||
server.port=8080
|
||||
server.host=localhost
|
||||
server.maxConnections=100
|
Loading…
Add table
Add a link
Reference in a new issue