Esempio n. 1
0
	def test_get(self):
		file = data.get_path('test.json')
		content = objectHierarchies.getJson(file)
Esempio n. 2
0
	def test_key(self):
		file = data.get_path('test.unq')
		content = objectHierarchies.getUnqlite(file, {'_key':'myKey'})
Esempio n. 3
0
	def test_collection(self):
		file = data.get_path('test.unq')
		content = objectHierarchies.getUnqlite(file, {'_collection':'entries', 'isPrime':True})
Esempio n. 4
0
	def test_filter(self):
		file = data.get_path('test.xml')
		content = objectHierarchies.getXml(file, {'isPrime': True})
Esempio n. 5
0
	def test_get(self):
		file = data.get_path('test.unq')
		content = objectHierarchies.getUnqlite(file)
Esempio n. 6
0
	def test_get(self):
		file = data.get_path('test.csv')
		content = dataTables.getCsv(file)
Esempio n. 7
0
	def test_get(self):
		file = data.get_path('test.xml')
		content = objectHierarchies.getXml(file)
Esempio n. 8
0
	def test_filter(self):
		file = data.get_path('test.sql')
		content = dataTables.getSqlite(file, {'_table': 'Sheet1', 'isPrime': True})
Esempio n. 9
0
	def test_get(self):
		file = data.get_path('test.sql')
		content = dataTables.getSqlite(file, {'_table': 'Sheet1'})
Esempio n. 10
0
	def test_filter(self):
		file = data.get_path('test.xlsx')
		content = dataTables.getExcel(file, {'_sheet': 'Sheet1', 'isPrime': True})
Esempio n. 11
0
	def test_get(self):
		file = data.get_path('test.xlsx')
		content = dataTables.getExcel(file)
Esempio n. 12
0
	def test_filter(self):
		file = data.get_path('test.csv')
		content = dataTables.getCsv(file, {'isPrime': True})