1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
from sphinxcontrib.bibtex.style.template import join, join2, sentence
def test_join() -> None:
assert str(join.format()) == ""
assert str(join["a", "b", "c", "d", "e"].format()) == "abcde"
join_sep = join(sep=", ", sep2=" and ", last_sep=", and ")
assert str(join_sep["Tom", "Jerry"].format()) == "Tom and Jerry"
assert (
str(join_sep["Billy", "Willy", "Dilly"].format()) == "Billy, Willy, and Dilly"
)
join_other = join(other=" et al.")
assert str(join_other["Billy", "Willy", "Dilly"].format()) == "Billy et al."
def test_join2() -> None:
assert str(join2.format()) == ""
assert str(join2["a", "b", "c", "d", "e"].format()) == "abcde"
join_sep = join2(sep1=";", sep2=",")
assert str(join_sep["Tom", "Jerry"].format()) == "Tom;Jerry"
assert str(join_sep["Billy", "Willy", "Dilly"].format()) == "Billy;Willy,Dilly"
def test_sentence() -> None:
assert str(sentence.format()) == ""
assert (
str(
sentence(capitalize=True, sep=" ")[
"mary", "had", "a", "little", "lamb"
].format()
)
== "Mary had a little lamb."
)
assert (
str(sentence(capitalize=False, add_period=False)["uno", "dos", "tres"].format())
== "uno, dos, tres"
)
assert (
str(sentence(capfirst=True, other=" and more")["uno", "dos", "tres"].format())
== "Uno and more."
)
|