فهرست منبع

Testcase for #1224, check that image or build is specified

Signed-off-by: Michael Chase-Salerno <[email protected]>
Michael Chase-Salerno 10 سال پیش
والد
کامیت
24a6c240fc
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      tests/unit/service_test.py

+ 1 - 0
tests/unit/service_test.py

@@ -42,6 +42,7 @@ class ServiceTest(unittest.TestCase):
         Service('foo', image='foo')
 
     def test_project_validation(self):
+        self.assertRaises(ConfigError, lambda: Service('bar'))
         self.assertRaises(ConfigError, lambda: Service(name='foo', project='_', image='foo'))
         Service(name='foo', project='bar', image='foo')