18 lines
351 B
Python
18 lines
351 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.storage.common import StorageFactory
|
|
import config
|
|
config.storageFactory = StorageFactory(config)
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
def test_001_basic(self):
|
|
pass
|