diff options
author | Your Name <you@example.com> | 2021-02-09 16:38:19 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2021-02-09 16:38:19 -0500 |
commit | 3af6b0cb80be974079a4f723b8c1dfa2128f9d41 (patch) | |
tree | 5e09ce9a08805b510137b923282d0500a68a3f60 /testLibbible.cc | |
parent | 5056d76c49ffb5b9a2b8a915d8f83770e0374f76 (diff) | |
download | libbible-3af6b0cb80be974079a4f723b8c1dfa2128f9d41.tar.gz libbible-3af6b0cb80be974079a4f723b8c1dfa2128f9d41.tar.bz2 libbible-3af6b0cb80be974079a4f723b8c1dfa2128f9d41.zip |
Fixed bug accessing last chapter of a book
Diffstat (limited to 'testLibbible.cc')
-rw-r--r-- | testLibbible.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testLibbible.cc b/testLibbible.cc index 20ff7d9..d3a265a 100644 --- a/testLibbible.cc +++ b/testLibbible.cc @@ -186,6 +186,9 @@ void TestLibbible::testGetText(void) { pair<int, int>(15, 4), pair<int, int>(15, 5)}); CPPUNIT_ASSERT(chapVerses == shouldContain); + + text = libbible::getText(libbible::getPassage("KJV", "John 21")); + CPPUNIT_ASSERT(text.back().verse == 25); } void TestLibbible::testSettings(void) { |