21 lines
418 B
Python
21 lines
418 B
Python
# scopes.office.tests.test_office
|
|
|
|
"""Tests for the 'scopes.office' package."""
|
|
|
|
import os, sys
|
|
sys.path = [os.path.dirname(__file__)] + sys.path
|
|
|
|
import unittest
|
|
|
|
from scopes.tests.util import setup_logging
|
|
from scopes.storage.common import StorageFactory
|
|
import config
|
|
|
|
setup_logging(config)
|
|
config.storageFactory = StorageFactory(config)
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
def test_001_basic(self):
|
|
pass
|