exercism / x86-64-assembly

Exercism exercises in x86-64 Assembly.
https://exercism.org/tracks/x86-64-assembly
MIT License
22 stars 18 forks source link

Remove TEST_IGNORE() calls so that tests actually run #71

Closed Sacusa closed 4 years ago

Sacusa commented 4 years ago

Most tests were not running because of the TEST_IGNORE() calls. I removed all of them from all test cases.

bergjohan commented 4 years ago

Thank you for the pull request!

The thought behind using TEST_IGNORE is to let the students solve the exercises using a TDD (test-driven development) approach.

This style is used by most of the other tracks on Exercism, see for example Ruby and Csharp.

This is also described for the students in TESTS.md.

Sacusa commented 4 years ago

Oops, didn't see that. My bad.

bergjohan commented 4 years ago

No problem, I appreciate you wanting to help out! :)