Преглед изворни кода

Pull ubuntu image for CLI tests

Ben Firshman пре 11 година
родитељ
комит
ee49e7055b
1 измењених фајлова са 3 додато и 2 уклоњено
  1. 3 2
      tests/cli_test.py

+ 3 - 2
tests/cli_test.py

@@ -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'