gecko-dev/taskcluster/taskgraph/test/test_task_legacy.py

36 строки
958 B
Python

# 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 __future__ import absolute_import, print_function, unicode_literals
import unittest
from ..task.legacy import (
validate_build_task,
BuildTaskValidationException
)
from mozunit import main
class TestValidateBuildTask(unittest.TestCase):
def test_validate_missing_extra(self):
with self.assertRaises(BuildTaskValidationException):
validate_build_task({})
def test_validate_valid(self):
with self.assertRaises(BuildTaskValidationException):
validate_build_task({
'extra': {
'locations': {
'build': '',
'tests': ''
}
}
})
if __name__ == '__main__':
main()