Skip to content

Commit 1ecb441

Browse files
authored
Add fail_if_not_equal() and gradethis_equal() (#346)
Co-authored-by: rossellhayes <[email protected]>
1 parent e9fb77e commit 1ecb441

11 files changed

+857
-616
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: gradethis
33
Title: Automated Feedback for Student Exercises in 'learnr' Tutorials
4-
Version: 0.2.12.9003
4+
Version: 0.2.12.9004
55
Authors@R: c(
66
person("Garrick", "Aden-Buie", , "[email protected]", role = "aut",
77
comment = c(ORCID = "0000-0002-7111-0077")),

NAMESPACE

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ S3method(give_random_phrase,"function")
1212
S3method(give_random_phrase,character)
1313
S3method(give_random_phrase,default)
1414
S3method(give_random_phrase,gradethis_graded)
15+
S3method(gradethis_equal,default)
1516
S3method(print,gradethis_solutions)
1617
export("%>%")
1718
export(.engine)
@@ -39,6 +40,7 @@ export(fail_if)
3940
export(fail_if_code_feedback)
4041
export(fail_if_equal)
4142
export(fail_if_error)
43+
export(fail_if_not_equal)
4244
export(give_code_feedback)
4345
export(give_encouragement)
4446
export(give_praise)
@@ -52,6 +54,7 @@ export(grade_this)
5254
export(grade_this_code)
5355
export(graded)
5456
export(gradethis_demo)
57+
export(gradethis_equal)
5558
export(gradethis_error_checker)
5659
export(gradethis_exercise_checker)
5760
export(gradethis_setup)

NEWS.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# gradethis 0.2.12.9004
2+
3+
* Add `fail_if_not_equal()` (#346).
4+
* `pass_if_equal()`, `fail_if_equal()`, and `fail_if_not_equal()` now call `gradethis_equal()`, an S3 generic which calls `waldo::compare()` by default. This allows other methods for `gradethis_equal()` to handle special cases (#346).
5+
16
# gradethis 0.2.12.9003
27

38
* `call_standardise_formals()` now attempts to standardize arguments passed through `...` in mapping functions like `lapply()` or `purrr::map()` (#344).

0 commit comments

Comments
 (0)