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