-
-
Notifications
You must be signed in to change notification settings - Fork 654
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
added usage of subtests to the house exercise #2438
Conversation
Dear eklatzerThank you for contributing to the Go track on Exercism! 💙
Dear Reviewer/Maintainer
Automated comment created by PR Commenter 🤖. |
if ret := Verse(v + 1); ret != expectedVerses[v] { | ||
t.Fatalf("Verse(%d) =\n%q\n want:\n%q", v+1, ret, expectedVerses[v]) | ||
} | ||
t.Run(strconv.Itoa(v+1), func(t *testing.T) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar suggestions to #2435
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be honest I don't think there is a need of adding a struct and testcases, I have simply added verse
to the description, what do you think?
One of #2098