def test_get(self): file = data.get_path('test.json') content = objectHierarchies.getJson(file)
def test_key(self): file = data.get_path('test.unq') content = objectHierarchies.getUnqlite(file, {'_key':'myKey'})
def test_collection(self): file = data.get_path('test.unq') content = objectHierarchies.getUnqlite(file, {'_collection':'entries', 'isPrime':True})
def test_filter(self): file = data.get_path('test.xml') content = objectHierarchies.getXml(file, {'isPrime': True})
def test_get(self): file = data.get_path('test.unq') content = objectHierarchies.getUnqlite(file)
def test_get(self): file = data.get_path('test.csv') content = dataTables.getCsv(file)
def test_get(self): file = data.get_path('test.xml') content = objectHierarchies.getXml(file)
def test_filter(self): file = data.get_path('test.sql') content = dataTables.getSqlite(file, {'_table': 'Sheet1', 'isPrime': True})
def test_get(self): file = data.get_path('test.sql') content = dataTables.getSqlite(file, {'_table': 'Sheet1'})
def test_filter(self): file = data.get_path('test.xlsx') content = dataTables.getExcel(file, {'_sheet': 'Sheet1', 'isPrime': True})
def test_get(self): file = data.get_path('test.xlsx') content = dataTables.getExcel(file)
def test_filter(self): file = data.get_path('test.csv') content = dataTables.getCsv(file, {'isPrime': True})