Derive alert_name from class name

This commit is contained in:
Gene Wood 2016-10-19 12:00:10 -07:00 коммит произвёл Brandon Myers
Родитель c3226d0488
Коммит 3c16556065
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -16,6 +16,9 @@ class AlertTestSuite(UnitTestSuite):
alerts_dir = os.path.join(
os.path.dirname(__file__), "../../alerts/")
os.chdir(alerts_dir)
self.alert_name = (self.__class__.__name__[4:] if
self.__class__.__name__.startswith('Test') else
False)
# Some housekeeping stuff here to make sure the data we get is 'good'
def verify_starting_values(self, test_case):