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
21 lines
546 B
Scheme
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)
|
|
)
|