mirror of
https://github.com/correl/elm.git
synced 2024-11-16 03:00:08 +00:00
32 lines
1.3 KiB
Elm
32 lines
1.3 KiB
Elm
|
module GradeSchoolTest where
|
||
|
|
||
|
-- TODO - remove example inclusion once Problem sets are ready to go live or CI is set up.
|
||
|
|
||
|
-- import GradeSchoolExample exposing (addStudent,
|
||
|
-- newSchool, gradeWithStudents, schoolFromList,
|
||
|
-- studentsInGrade, schoolToList)
|
||
|
|
||
|
import GradeSchoolExample as S exposing (..)
|
||
|
|
||
|
import ElmTest.Test exposing (test, Test, suite)
|
||
|
import ElmTest.Assertion exposing (assert, assertEqual)
|
||
|
import ElmTest.Runner.Element exposing (runDisplay)
|
||
|
|
||
|
import Dict
|
||
|
|
||
|
tests : Test
|
||
|
tests = suite "GradeSchool Test Suite"
|
||
|
[
|
||
|
test "add student" (assertEqual [(2, ["Aimee"])]
|
||
|
(S.schoolToList (S.addStudent 2 "Aimee" S.newSchool))),
|
||
|
test "add more students in same class" (assertEqual [(2, ["Blair", "James", "Paul"])]
|
||
|
(S.schoolToList (S.gradeWithStudents 2 ["James", "Blair", "Paul"]))),
|
||
|
test "add students to different grades" (assertEqual [(3, ["Chelsea"]), (7, ["Logan"])]
|
||
|
(S.schoolToList (S.schoolFromList [(3, "Chelsea"), (7, "Logan")]))),
|
||
|
test "get students in a grade" (assertEqual ["Bradley", "Franklin"]
|
||
|
(S.studentsInGrade 5 (S.schoolFromList [(5, "Franklin"), (5, "Bradley"), (1, "Jeff")]))),
|
||
|
test "get students in a non-existent grade" (assertEqual [] (S.studentsInGrade 1 S.newSchool))
|
||
|
]
|
||
|
|
||
|
main = runDisplay tests
|