コード例 #1
0
ファイル: objectHierarchies.py プロジェクト: Tythos/pyroclast
	def test_get(self):
		file = data.get_path('test.json')
		content = objectHierarchies.getJson(file)
コード例 #2
0
ファイル: objectHierarchies.py プロジェクト: Tythos/pyroclast
	def test_key(self):
		file = data.get_path('test.unq')
		content = objectHierarchies.getUnqlite(file, {'_key':'myKey'})
コード例 #3
0
ファイル: objectHierarchies.py プロジェクト: Tythos/pyroclast
	def test_collection(self):
		file = data.get_path('test.unq')
		content = objectHierarchies.getUnqlite(file, {'_collection':'entries', 'isPrime':True})
コード例 #4
0
ファイル: objectHierarchies.py プロジェクト: Tythos/pyroclast
	def test_filter(self):
		file = data.get_path('test.xml')
		content = objectHierarchies.getXml(file, {'isPrime': True})
コード例 #5
0
ファイル: objectHierarchies.py プロジェクト: Tythos/pyroclast
	def test_get(self):
		file = data.get_path('test.unq')
		content = objectHierarchies.getUnqlite(file)
コード例 #6
0
ファイル: dataTables.py プロジェクト: Tythos/pyroclast
	def test_get(self):
		file = data.get_path('test.csv')
		content = dataTables.getCsv(file)
コード例 #7
0
ファイル: objectHierarchies.py プロジェクト: Tythos/pyroclast
	def test_get(self):
		file = data.get_path('test.xml')
		content = objectHierarchies.getXml(file)
コード例 #8
0
ファイル: dataTables.py プロジェクト: Tythos/pyroclast
	def test_filter(self):
		file = data.get_path('test.sql')
		content = dataTables.getSqlite(file, {'_table': 'Sheet1', 'isPrime': True})
コード例 #9
0
ファイル: dataTables.py プロジェクト: Tythos/pyroclast
	def test_get(self):
		file = data.get_path('test.sql')
		content = dataTables.getSqlite(file, {'_table': 'Sheet1'})
コード例 #10
0
ファイル: dataTables.py プロジェクト: Tythos/pyroclast
	def test_filter(self):
		file = data.get_path('test.xlsx')
		content = dataTables.getExcel(file, {'_sheet': 'Sheet1', 'isPrime': True})
コード例 #11
0
ファイル: dataTables.py プロジェクト: Tythos/pyroclast
	def test_get(self):
		file = data.get_path('test.xlsx')
		content = dataTables.getExcel(file)
コード例 #12
0
ファイル: dataTables.py プロジェクト: Tythos/pyroclast
	def test_filter(self):
		file = data.get_path('test.csv')
		content = dataTables.getCsv(file, {'isPrime': True})