Fix(Content): Corrected file and project references in README.
This commit is contained in:
21
tests/end_to_end_test_alphabet_level_translation.py
Normal file
21
tests/end_to_end_test_alphabet_level_translation.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
@author: Edward Middleton-Smith
|
||||
"""
|
||||
|
||||
from context import business_objects
|
||||
from business_objects.braille_proficiency_level import Braille_Proficiency_Level
|
||||
from business_objects.character_braille import Character_Braille
|
||||
from business_objects.translation_braille import Translation_Braille
|
||||
|
||||
def test_alphabet_level_translation():
|
||||
print('Alphabet Level Translation')
|
||||
translation = Translation_Braille(
|
||||
plaintext = "Be good",
|
||||
translation_proficiency_level = Braille_Proficiency_Level(1)
|
||||
)
|
||||
translation.print()
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_alphabet_level_translation()
|
||||
|
||||
Reference in New Issue
Block a user