13 lines
388 B
Python
13 lines
388 B
Python
import os
|
|
import sys
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '../../../libbeat/tests/system'))
|
|
from beat.beat import TestCase
|
|
|
|
|
|
class BaseTest(TestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(self):
|
|
self.beat_name = "journalbeat"
|
|
self.beat_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../"))
|
|
super(BaseTest, self).setUpClass()
|