exercism / lfe

Exercism exercises in Lisp Flavoured Erlang (LFE).
https://exercism.org/tracks/lfe
MIT License
25 stars 30 forks source link

[grade-school] Update `get-students-in-a-non-existant-grade_test` #35

Closed NobbZ closed 8 years ago

NobbZ commented 8 years ago

The old version of the test in question assumed the following:

a) you are using a list to represent your school b) an empty classroom/roster is equal to an empty school

This change does introduce complete agnosticity about the structure of the school itself. Also now grade-school:get/2 is expected to always return an ordered list of names.

This PR does follow the same spirit as exercism/xerlang#72

yurrriq commented 8 years ago

Thanks!