
Moves all tests under orm/services/audit_server to top level tests folder, making minimal necessary changes to get them working. Change-Id: Ia1ed4d2db2e0f75b110ba0d2c4f5658930a1b1ad
16 lines
297 B
Python
16 lines
297 B
Python
"""test_base module."""
|
|
|
|
|
|
import unittest
|
|
|
|
from orm.services.audit_trail_manager.audit_server.services.base import Error
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
"""test base class."""
|
|
|
|
def test_init_Error(self):
|
|
"""Test that init of Error succeeded."""
|
|
Error("test")
|
|
pass
|