Exemplo n.º 1
0
 def testOnlyOwnersFiles(self):
   mock_change = MockChange([
     'some/path/OWNERS',
     'A\Windows\Path\OWNERS',
   ])
   results = PRESUBMIT.GetPreferredTryMasters(None, mock_change)
   self.assertEqual({}, results)
Exemplo n.º 2
0
 def testNoFiles(self):
   mock_change = MockChange([])
   results = PRESUBMIT.GetPreferredTryMasters(None, mock_change)
   self.assertEqual({}, results)