from vocabulary import UserVocabularyLevel, ArticleVocabularyLevel def test_article_level(): ''' Boundary case test ''' article = ArticleVocabularyLevel('') assert article.level == 0 def test_user_level(): ''' Boundary case test ''' user = UserVocabularyLevel({}) assert user.level == 0