diff options
Diffstat (limited to 'tests/hover_test.odin')
| -rw-r--r-- | tests/hover_test.odin | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin index 81a26ce..6f8cecf 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -5950,6 +5950,16 @@ ast_hover_directives_load :: proc(t: ^testing.T) { } test.expect_hover(t, &source, "test.bar :: #load(\"foo.txt\")") } + +@(test) +ast_hover_directives_config_info :: proc(t: ^testing.T) { + source := test.Source { + main = `package test + bar :: #c{*}onfig(TEST, false) + `, + } + test.expect_hover(t, &source, "#config(<identifier>, default)\n\nChecks if an identifier is defined through the command line, or gives a default value instead.\n\nValues can be set with the `-define:NAME=VALUE` command line flag.") +} /* Waiting for odin fix |