зеркало из https://github.com/mozilla/MozDef.git
13 строки
323 B
Python
13 строки
323 B
Python
import os
|
|
import sys
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), "../"))
|
|
from query_test_suite import QueryTestSuite
|
|
|
|
|
|
class PositiveTestSuite(QueryTestSuite):
|
|
"""
|
|
Represents a positive test case expectation.
|
|
Used in the elasticsearch abstract class unit tests.
|
|
"""
|
|
positive_test = True
|