mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-22 21:34:59 +00:00
refactor: reorder test language cases in repomap tests
This commit is contained in:
parent
631cdc37c4
commit
b623141a8f
1 changed files with 15 additions and 15 deletions
|
@ -639,21 +639,7 @@ namespace Greetings {
|
|||
}""",
|
||||
"IGreeter", # Key symbol to check
|
||||
),
|
||||
#####################
|
||||
"dart": (
|
||||
"test.dart",
|
||||
"""void main() {
|
||||
print('Hello, World!');
|
||||
}
|
||||
|
||||
class Greeter {
|
||||
String sayHello(String name) {
|
||||
return 'Hello, $name!';
|
||||
}
|
||||
}
|
||||
""",
|
||||
"Greeter", # Key symbol to check
|
||||
),
|
||||
##################### FIX ALL THE ONES BELOW HERE vvvvvvvvvvv
|
||||
"elisp": (
|
||||
"test.el",
|
||||
'(defun greet (name)\n (message "Hello, %s!" name))\n',
|
||||
|
@ -675,6 +661,20 @@ class Greeter {
|
|||
),
|
||||
"main", # Key symbol to check
|
||||
),
|
||||
"dart": (
|
||||
"test.dart",
|
||||
"""void main() {
|
||||
print('Hello, World!');
|
||||
}
|
||||
|
||||
class Greeter {
|
||||
String sayHello(String name) {
|
||||
return 'Hello, $name!';
|
||||
}
|
||||
}
|
||||
""",
|
||||
"Greeter", # Key symbol to check
|
||||
),
|
||||
}
|
||||
|
||||
for lang, (filename, content, key_symbol) in language_files.items():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue