-
-
Notifications
You must be signed in to change notification settings - Fork 45
Provide Function Name in Code File #210
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
Conversation
How one would know the right name of the function used in test file?, I made function name just `hamming ()` and ran, it failed all test cases, then I checked test file and came to know the function name should be `hamming-distance ()`, so it should be given in code file, like it is provided in other languages.
I agree with this. I'm happy to merge this, but it would be even more awesome if you could apply this to the other exercises too. Would you be willing to do that? No worries if not. |
Yes! I will apply it to all the other exercises. |
I'm new to emacs lisp and I struggled running tests with just `ert`, then I came to know to run `eval-buffer` on test file, before running `ert`, so I added this. If its common to other emacs lisp users, this update can be ignored.
I've completed adding functions to all the code files and checked them all twice and fixed all typos I did. Handed over to review and merge team. (I was in hurry and pressed close pull request instead of comment 😂) |
Great work! Thanks. |
- https://github.com/exercism/emacs-lisp/blob/8848da5d17e639f61bb9840fd55d12ee5b1873f3/.github/workflows/ci.yml didn't exit with an error code if exercise tests where failing - This was noticed because the tests for exercism#210 did fail but the bash script didn't register the failure.
- https://github.com/exercism/emacs-lisp/blob/8848da5d17e639f61bb9840fd55d12ee5b1873f3/.github/workflows/ci.yml didn't exit with an error code if exercise tests where failing - This was noticed because the tests for exercism#210 did fail but the bash script didn't register the failure.
- https://github.com/exercism/emacs-lisp/blob/8848da5d17e639f61bb9840fd55d12ee5b1873f3/.github/workflows/ci.yml didn't exit with an error code if exercise tests where failing - This was noticed because the tests for #210 did fail but the bash script didn't register the failure.
How one would know the right name of the function used in test file?, I made function name just
hamming ()
and ran, it failed all test cases, then I checked test file and came to know the function name should behamming-distance ()
, so it should be given in code file, like it is provided in other languages.