We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f78d60f commit 4fdf180Copy full SHA for 4fdf180
test/test_sys_checkout.py
@@ -1240,9 +1240,16 @@ def test_container_component(self):
1240
# create the top level externals file
1241
self._generator.container_full(under_test_dir)
1242
1243
- # inital checkout
+ # inital checkout, first try a nonexistant component argument noref
1244
+ checkout_args = ['simp_opt', 'noref']
1245
+ checkout_args.extend(self.checkout_args)
1246
+
1247
+ with self.assertRaises(RuntimeError):
1248
+ self.execute_cmd_in_dir(under_test_dir, checkout_args)
1249
1250
checkout_args = ['simp_opt']
1251
checkout_args.extend(self.checkout_args)
1252
1253
overall, tree = self.execute_cmd_in_dir(under_test_dir,
1254
checkout_args)
1255
0 commit comments