コード例 #1
0
ファイル: TestAPIDatastore.py プロジェクト: Keesaco/KeesaFlo
	def test_getcontainer_slash(self):
		self.assertEqual(ds.get_container("/"), "/")
コード例 #2
0
ファイル: TestAPIDatastore.py プロジェクト: Keesaco/KeesaFlo
	def test_getcontainer_empty(self):
		self.assertEqual(ds.get_container(""), "/")
コード例 #3
0
ファイル: TestAPIDatastore.py プロジェクト: Keesaco/KeesaFlo
	def test_getcontainer_dirname(self):
		self.assertEqual(ds.get_container("/dir/subdir"), "/dir/")
コード例 #4
0
ファイル: TestAPIDatastore.py プロジェクト: Keesaco/KeesaFlo
	def test_getcontainer_bucketroot(self):
		self.assertEqual(ds.get_container("/dir/"), "/dir/")
コード例 #5
0
ファイル: TestAPIDatastore.py プロジェクト: Keesaco/KeesaFlo
	def test_getcontainer_filename(self):
		self.assertEqual(ds.get_container("/dir/subdir/file.ext"), "/dir/subdir/")