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