Skip to content

Commit 41265ed

Browse files
committed
added parse testing module
1 parent 2b41801 commit 41265ed

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import sys
2+
sys.path.insert(0, "../../..")
3+
import logging
4+
from cmapPy.pandasGEXpress import setup_GCToo_logger as setup_logger
5+
import unittest
6+
import pandas.util.testing as pandas_testing
7+
from cmapPy.pandasGEXpress import GCToo as GCToo
8+
from cmapPy.pandasGEXpress import parse_gctx as parse_gctx
9+
from cmapPy.pandasGEXpress import mini_gctoo_for_testing as mini_gctoo_for_testing
10+
11+
__author__ = "Oana Enache"
12+
__email__ = "[email protected]"
13+
14+
logger = logging.getLogger(setup_logger.LOGGER_NAME)
15+
16+
class TestParse(unittest.TestCase):
17+
def test_gctx_parsing(self):
18+
pass
19+
20+
def test_gct_parsing(self):
21+
pass

0 commit comments

Comments
 (0)