feat: Add properties language test case and fixture file

This commit is contained in:
Paul Gauthier (aider) 2025-03-12 15:13:56 -07:00
parent a503f291e7
commit 73eb8701dd
2 changed files with 15 additions and 0 deletions

View file

@ -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"

View 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