コード例 #1
0
 def test_add_tdfitem(self):
     self.assertIsNotNone(models.add(self.tdf_file.uuid))
コード例 #2
0
 def test_add_bigbeditem(self):
     self.assertIsNotNone(models.add(self.bigbed_file.uuid))
コード例 #3
0
 def test_add_wigitem(self):
     self.assertIsNotNone(models.add(self.wig_file.uuid))
コード例 #4
0
 def test_add_unknown_file_type(self):
     # create a FileStoreItem without a file type
     self.assertIsNone(models.add(self.undefined_file.uuid))
コード例 #5
0
ファイル: tests.py プロジェクト: ShuhratBek/refinery-platform
 def test_add_bigbeditem(self):
     self.assertIsNotNone(models.add(self.bigbed_file.uuid))
コード例 #6
0
 def test_add_bamitem(self):
     self.assertIsNotNone(models.add(self.bam_file.uuid))
コード例 #7
0
ファイル: tests.py プロジェクト: ShuhratBek/refinery-platform
 def test_add_unknown_file_type(self):
     # create a FileStoreItem without a file type
     self.assertIsNone(models.add(self.undefined_file.uuid))
コード例 #8
0
ファイル: tests.py プロジェクト: ShuhratBek/refinery-platform
 def test_add_tdfitem(self):
     self.assertIsNotNone(models.add(self.tdf_file.uuid))
コード例 #9
0
ファイル: tests.py プロジェクト: ShuhratBek/refinery-platform
 def test_add_wigitem(self):
     self.assertIsNotNone(models.add(self.wig_file.uuid))
コード例 #10
0
ファイル: tests.py プロジェクト: ShuhratBek/refinery-platform
 def test_add_bamitem(self):
     self.assertIsNotNone(models.add(self.bam_file.uuid))
コード例 #11
0
ファイル: tests.py プロジェクト: mahmoodi/refinery-platform
 def test_add_unknown_file_type(self):
     # create a FileStoreItem without a file type
     undefined_file = fs_models.FileStoreItem.objects.create(
         source="/example/path/test_file")
     self.assertIsNone(models.add(undefined_file.uuid))
コード例 #12
0
ファイル: tests.py プロジェクト: bennyyu686/refinery-platform
 def test_add_unknown_file_type(self):
     # create a FileStoreItem without a file type
     undefined_file = fs_models.FileStoreItem.objects.create_item(
         "testfile")
     self.assertIsNone(models.add(undefined_file.uuid))
コード例 #13
0
 def test_add_unknown_file_type(self):
     # create a FileStoreItem without a file type 
     undefined_file = fs_models.FileStoreItem.objects.create(source="/example/path/test_file")
     self.assertIsNone(models.add(undefined_file.uuid))