def test_package_must_pass_args(self, execute_command_mock): execute_command_mock.return_value = True package_cli(self.args, "template_file", 'bucketName') execute_command_mock.assert_called_with("package", self.expected_args, "template_file")
def test_package_must_pass_args(self, execute_command_mock): execute_command_mock.return_value = True package_cli(self.args) execute_command_mock.assert_called_with("package", self.args)