Files
oak-gpui/extensions/elixir/languages/elixir/runnables.scm
T
João Otávio Biondo a6e0c8aca1 elixir: Add runnable tasks (#12526)
Release Notes:

- Added runnable tasks to Elixir tests (modules, `describe` and `test`
blocks)


https://github.com/zed-industries/zed/assets/7737375/06f1b4cb-0364-4c30-982d-6dda3193b5d2
2024-05-31 20:49:34 +02:00

21 lines
546 B
Scheme

; Macros `describe` and `test`.
; This matches the ExUnit test style.
(
(call
target: (identifier) @run (#any-of? @run "describe" "test")
) @_elixir-test
(#set! tag elixir-test)
)
; Modules containing at least one `describe` or `test`.
; This matches the ExUnit test style.
(
(call
target: (identifier) @run (#eq? @run "defmodule")
(do_block
(call target: (identifier) @_keyword (#any-of? @_keyword "describe" "test"))
)
) @_elixir-module-test
(#set! tag elixir-module-test)
)