diff --git a/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py b/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py index 16f0e7625..649e97dde 100644 --- a/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py +++ b/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py @@ -47,3 +47,5 @@ class TestWordsOfWorshipFileImport(SongImportTestHelper): self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace (6 Verses).json'))) self.file_import([os.path.join(TEST_PATH, 'When morning gilds the skies.wsg')], self.load_external_result_data(os.path.join(TEST_PATH, 'When morning gilds the skies.json'))) + self.file_import([os.path.join(TEST_PATH, 'Holy Holy Holy Lord God Almighty.wow-song')], + self.load_external_result_data(os.path.join(TEST_PATH, 'Holy Holy Holy Lord God Almighty.json'))) diff --git a/tests/resources/wordsofworshipsongs/Holy Holy Holy Lord God Almighty.json b/tests/resources/wordsofworshipsongs/Holy Holy Holy Lord God Almighty.json new file mode 100644 index 000000000..87e5fca23 --- /dev/null +++ b/tests/resources/wordsofworshipsongs/Holy Holy Holy Lord God Almighty.json @@ -0,0 +1,25 @@ +{ + "authors": [ + "Words: Reginald Heber (1783-1826). Music: John B. Dykes (1823-1876)" + ], + "title": "Holy Holy Holy Lord God Almighty", + "verse_order_list": [], + "verses": [ + [ + "Holy, holy, holy, Lord God Almighty\nEarly in the morning\nOur song shall rise to Thee:\nHoly, holy, holy, merciful and mighty,\nGod in three Persons, blessed Trinity!", + "V" + ], + [ + "Holy, holy, holy! all the saints adore Thee,\nCasting down their golden crowns\nAround the glassy sea;\nCherubim and seraphim falling down before Thee,\nWho were and are and evermore shall be.", + "V" + ], + [ + "Holy, holy, holy! though the darkness hide Thee,\nThough the eye of sinful man\nThy glory may not see;\nOnly Thou art holy, there is none beside Thee,\nPerfect in power, in love and purity.", + "V" + ], + [ + "Holy, holy, holy, Lord God Almighty!\nAll Thy works shall praise Thy name\nIn earth, and sky, and sea;\nHoly, holy, holy, merciful and mighty\nGod in three Persons, blessed Trinity!", + "V" + ] + ] +} diff --git a/tests/resources/wordsofworshipsongs/Holy Holy Holy Lord God Almighty.wow-song b/tests/resources/wordsofworshipsongs/Holy Holy Holy Lord God Almighty.wow-song new file mode 100644 index 000000000..92aa8bfeb Binary files /dev/null and b/tests/resources/wordsofworshipsongs/Holy Holy Holy Lord God Almighty.wow-song differ