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)
Exemple #6
0
	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)
Exemple #8
0
	def test_filter(self):
		file = data.get_path('test.sql')
		content = dataTables.getSqlite(file, {'_table': 'Sheet1', 'isPrime': True})
Exemple #9
0
	def test_get(self):
		file = data.get_path('test.sql')
		content = dataTables.getSqlite(file, {'_table': 'Sheet1'})
Exemple #10
0
	def test_filter(self):
		file = data.get_path('test.xlsx')
		content = dataTables.getExcel(file, {'_sheet': 'Sheet1', 'isPrime': True})
Exemple #11
0
	def test_get(self):
		file = data.get_path('test.xlsx')
		content = dataTables.getExcel(file)
Exemple #12
0
	def test_filter(self):
		file = data.get_path('test.csv')
		content = dataTables.getCsv(file, {'isPrime': True})