mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 04:48:00 +00:00
13 lines
424 B
Python
13 lines
424 B
Python
import unittest
|
|
from tutor import images
|
|
|
|
|
|
class ImagesTests(unittest.TestCase):
|
|
def test_get_tag(self):
|
|
config = {
|
|
"DOCKER_IMAGE_OPENEDX": "registry/openedx",
|
|
"DOCKER_IMAGE_OPENEDX_DEV": "registry/openedxdev",
|
|
}
|
|
self.assertEqual("registry/openedx", images.get_tag(config, "openedx"))
|
|
self.assertEqual("registry/openedxdev", images.get_tag(config, "openedx-dev"))
|