aboutsummaryrefslogtreecommitdiff
path: root/test/test_citation.ml
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_citation.ml')
-rw-r--r--test/test_citation.ml21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/test_citation.ml b/test/test_citation.ml
index 9405d39..25fc260 100644
--- a/test/test_citation.ml
+++ b/test/test_citation.ml
@@ -359,3 +359,24 @@ let render_suite =
Alcotest.test_case "roman_numeral: table values" `Quick test_roman_numeral_values;
Alcotest.test_case "roman_numeral: non-positive" `Quick
test_roman_numeral_non_positive ] )
+
+module S = Colitur_citation.Sigla
+
+let test_verbatim_is_identity () =
+ List.iter
+ (fun c -> Alcotest.(check s) c c (S.format S.verbatim c))
+ [ "3 Kgs. 19:3-8"; "Isa. 1:16-19"; "not a citation at all" ]
+
+let test_unparseable_survives_unchanged () =
+ let sg = S.make ~style:R.default_style ~tradition:B.vulgate ~names in
+ Alcotest.(check s) "passed through" "Nonesuch 1:1" (S.format sg "Nonesuch 1:1")
+
+let test_tradition_applies () =
+ let modern = B.tradition_of_fields [ ("kings_3", "kings_1") ] in
+ let sg = S.make ~style:R.default_style ~tradition:modern ~names in
+ Alcotest.(check s) "renumbered" "kings_1 19:3-8" (S.format sg "3 Kings 19:3-8")
+
+let sigla_suite =
+ [ ("verbatim identity", `Quick, test_verbatim_is_identity);
+ ("unparseable survives", `Quick, test_unparseable_survives_unchanged);
+ ("tradition applies", `Quick, test_tradition_applies) ]