vanh17 / ProgLangAssignments

Assignments for Programming Languages course
0 stars 0 forks source link

Issue Tests for is_tie #7

Closed vanh17 closed 8 years ago

vanh17 commented 8 years ago

Reuse the test from result and change a little bit let t2a = is_tie (Rock, Paper) = false let t2b = is_tie (Paper, Rock) = false let t2c = is_tie (Rock, Scissors) = false let t2d = is_tie (Scissors, Paper) = false let t2e = is_tie (Scissors, Rock) = false let t2f = is_tie (Paper ,Scissors) = false let t2g = is_tie (Rock, Rock) = true let t2h = is_tie (Paper, Paper) = true let t2i = is_tie (Scissors, Scissors) = true

vanh17 commented 8 years ago

All tests passed!