Pull ubuntu image for CLI tests

This commit is contained in:
Ben Firshman 2014-01-26 20:28:37 +00:00
parent ac90e0e939
commit ee49e7055b
1 changed files with 3 additions and 2 deletions

View File

@ -1,12 +1,13 @@
from __future__ import unicode_literals
from __future__ import absolute_import
from . import unittest
from .testcases import DockerClientTestCase
from mock import patch
from six import StringIO
from fig.cli.main import TopLevelCommand
class CLITestCase(unittest.TestCase):
class CLITestCase(DockerClientTestCase):
def setUp(self):
super(CLITestCase, self).setUp()
self.command = TopLevelCommand()
self.command.base_dir = 'tests/fixtures/simple-figfile'