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