コード例 #1
0
ファイル: core_objects.py プロジェクト: zaxrok/rapp-api
 def test_wrong_filepath_constructor(self):
     f = File(filepath='/non-exist-file')
     f.make_tuple()
コード例 #2
0
ファイル: core_objects.py プロジェクト: zaxrok/rapp-api
 def test_wrong_filepath(self):
     f = File()
     f.path = '/non-exist-file'
     f.make_tuple()
コード例 #3
0
ファイル: core_objects.py プロジェクト: zaxrok/rapp-api
 def test_make_tuple(self):
     f = File(filepath=path.join(testdatadir, 'Lenna.png'))
     f.make_tuple()