Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change regex for elixir#exunit to enable multi-line do / feature blocks #112

Conversation

lessthanseventy
Copy link
Contributor

@lessthanseventy lessthanseventy commented Apr 20, 2022

My regex skills aren't the greatest, but I believe this will work to fix #111

@lessthanseventy
Copy link
Contributor Author

lessthanseventy commented Apr 20, 2022

    feature "clients display correct status", %{
      session: session,
      clients: clients
    } do
  feature "client sees no callout when there are no matches",
          %{session: session, client: client, aide: aide} do

This still doesn't catch these tests either, and I'm not sure how to fix that yet. Is there a better approach to the regex match?

This will find all of the valid constructions.
```
test "some test" do
test "another test",
  %{foo: foo, bar: bar} do
test "a third test", %{baz: baz} do
test "last one", %{
  bop: bop,
  bap: bap} do
```
are all valid as per the mix formatter and this finds all of those. is this regex strict enough to not provide false positives?
@rcarriga
Copy link
Owner

Thanks for the PR! Since we're trying to cover a few cases here could you a small test file to here https://github.com/rcarriga/vim-ultest/tree/master/tests/mocks/test_outputs and a corresponding test in https://github.com/rcarriga/vim-ultest/blob/master/tests/unit/handler/parsers/test_file.py. Large regexes are pretty tough to maintain so would be great to be able to make sure it doesn't break 😅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Multi-line feature / do blocks are not detected
2 participants