11,12d10 < super().setup_method() < 27,29c25,27 < '-config', self.temp_dir + '/openssl.conf', < '-out', self.temp_dir + '/' + name + '.crt', < '-keyout', self.temp_dir + '/' + name + '.key', --- > '-config', option.temp_dir + '/openssl.conf', > '-out', option.temp_dir + '/' + name + '.crt', > '-keyout', option.temp_dir + '/' + name + '.key', 41,42c39,40 < key_path = self.temp_dir + '/' + key + '.key' < crt_path = self.temp_dir + '/' + crt + '.crt' --- > key_path = option.temp_dir + '/' + key + '.key' > crt_path = option.temp_dir + '/' + crt + '.crt' 69c67 < conf_path = self.temp_dir + '/openssl.conf' --- > conf_path = option.temp_dir + '/openssl.conf'