exercism / go

Exercism exercises in Go.
https://exercism.org/tracks/go
MIT License
984 stars 651 forks source link

simple-cipher missing step #3? #786

Closed tleen closed 7 years ago

tleen commented 7 years ago

I may be mistaken (I'm blitzing through the exercises quickly) but does the this track's simple-cipher not require the user to do the third step in the README with the random key/ArgumentError? This may be a case where we need to override the generated README?

leenipper commented 7 years ago

override the generated README

Agreed.

From the test code in simple-cipher:

// Steps 2 and 3 seem to be describing the Vigenère cipher (Google it) // so let's do that too. The random thing, don't worry about. There is // no test for that.

tleen commented 7 years ago

Ok we can fix that, probably worth keeping an eye out on the other autogenerated READMEs they may be out of sync with the implementations.

tleen commented 7 years ago

Now I am wondering if we should take over the generated README to fix that one little thing about randomness that the test file says to ignore. We could

robphoenix commented 7 years ago

Ideally I think we should fulfill the README, this could perhaps be a separate issue. In the meantime, I like moving notes like these from the test suite into the README.