Example #1
0
 def test_read_pair_type_RL(self):
     self.assertEqual(READ_PAIR_TYPE.RL, read_pair_type(self.RL))
Example #2
0
 def test_read_pair_type_RR(self):
     self.assertEqual(READ_PAIR_TYPE.RR, read_pair_type(self.RR))
Example #3
0
 def test_read_pair_type_LL(self):
     self.assertEqual(READ_PAIR_TYPE.LL, read_pair_type(self.LL))
Example #4
0
 def test_read_pair_type_LR(self):
     self.assertEqual(READ_PAIR_TYPE.LR, read_pair_type(self.LR))
Example #5
0
 def test_read_pair_type_RL(self, read_pairs):
     assert read_pair_type(read_pairs.RL) == READ_PAIR_TYPE.RL
Example #6
0
 def test_read_pair_type_LR(self, read_pairs):
     assert read_pair_type(read_pairs.LR) == READ_PAIR_TYPE.LR