Skip to content

Commit

Permalink
updated test to sample data #61
Browse files Browse the repository at this point in the history
  • Loading branch information
bensteUEM committed Jun 2, 2024
1 parent 2615826 commit e3d6fa9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/test_sng.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,14 @@ def test_content(self) -> None:
test_dir = Path("./testData/Test")
test_filename = "sample_languages.sng"
song = SngFile(test_dir / test_filename)
expected_versemarkers_set = {"Intro", "Verse 1", "Verse 2"}
expected_versemarkers_set = {
"Intro",
"Verse 1",
"Verse 2",
"Verse 3",
"Verse 4",
"Verse 5",
}
test_versemarkers_set = set(song.content.keys())

self.assertEqual(expected_versemarkers_set, test_versemarkers_set)
Expand Down

0 comments on commit e3d6fa9

Please sign in to comment.