Add basic test for defect_enhancement_task model (#1019)

Fixes #438
This commit is contained in:
Caitlin White 2019-10-18 20:56:23 +11:00 коммит произвёл Marco
Родитель 13973a6cc0
Коммит ef1cdc8394
2 изменённых файлов: 15 добавлений и 0 удалений

1
tests/fixtures/bugs.json поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
from bugbug.models.defect_enhancement_task import DefectEnhancementTaskModel
def test_get_defect_enhancement_task_labels():
model = DefectEnhancementTaskModel()
classes, _ = model.get_labels()
assert classes[1042414] == "defect"
assert classes[1531080] == "task"
assert classes[1348788] == "enhancement"