mirror of https://github.com/docker/docs.git
Pull ubuntu image for CLI tests
This commit is contained in:
parent
ac90e0e939
commit
ee49e7055b
|
@ -1,12 +1,13 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
from . import unittest
|
from .testcases import DockerClientTestCase
|
||||||
from mock import patch
|
from mock import patch
|
||||||
from six import StringIO
|
from six import StringIO
|
||||||
from fig.cli.main import TopLevelCommand
|
from fig.cli.main import TopLevelCommand
|
||||||
|
|
||||||
class CLITestCase(unittest.TestCase):
|
class CLITestCase(DockerClientTestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
super(CLITestCase, self).setUp()
|
||||||
self.command = TopLevelCommand()
|
self.command = TopLevelCommand()
|
||||||
self.command.base_dir = 'tests/fixtures/simple-figfile'
|
self.command.base_dir = 'tests/fixtures/simple-figfile'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue