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

Add support for minitest tests #254

Closed
wants to merge 2 commits into from
Closed

Conversation

andreionut
Copy link

I had similar problems like some users outlined here: #64

I've also improved the generation of the test_name by choosing the second match group as it will be just the name of the test in quotes.

test_name = match_obj.group(1)[::-1]
return "%s%s%s" % ("/", test_name.replace("should", "").replace("\"", "").replace("'", "").strip(), "/")
test_name = match_obj.group(2)[::-1][1:-1]
return "%s%s%s" % ("/", test_name.replace("'", "'\"'\"'").strip(), "/")
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is so we escape the single quote in the shell.

@andreionut andreionut closed this Jul 5, 2018
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.

1 participant