Skip to content

Commit

Permalink
eliuds-eggs: make all but first test pending (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Mar 8, 2024
1 parent 3a837d9 commit 9dec052
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exercises/practice/eliuds-eggs/eliuds_eggs_tests.plt
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ pending :-
test(zero_eggs, condition(true)) :-
egg_count(0, 0).

test(one_egg, condition(true)) :-
test(one_egg, condition(pending)) :-
egg_count(16, 1).

test(four_eggs, condition(true)) :-
test(four_eggs, condition(pending)) :-
egg_count(89, 4).

test(thirteen_eggs, condition(true)) :-
test(thirteen_eggs, condition(pending)) :-
egg_count(2000000000, 13).

:- end_tests(eliuds_eggs).

0 comments on commit 9dec052

Please sign in to comment.