def test_do_md_object_list(self): args = self._make_args({"namespace": "MyNamespace"}) with mock.patch.object(self.gc.metadefs_object, "list") as mocked_list: expect_objects = [{"namespace": "MyNamespace", "object": "MyObject"}] mocked_list.return_value = expect_objects test_shell.do_md_object_list(self.gc, args) mocked_list.assert_called_once_with("MyNamespace") utils.print_list.assert_called_once_with( expect_objects, ["name", "description"], field_settings={"description": {"align": "l", "max_width": 50}} )
def test_do_md_object_list(self): args = self._make_args({'namespace': 'MyNamespace'}) with mock.patch.object(self.gc.metadefs_object, 'list') as mocked_list: expect_objects = [{'namespace': 'MyNamespace', 'object': 'MyObject'}] mocked_list.return_value = expect_objects test_shell.do_md_object_list(self.gc, args) mocked_list.assert_called_once_with('MyNamespace') utils.print_list.assert_called_once_with( expect_objects, ['name', 'description'], field_settings={ 'description': {'align': 'l', 'max_width': 50}})