Example #1
0
 def testWhatever(self):
     expected = 'https://foo.com/bar'
     actual = bootstrap.repository('foo.com/bar')
     self.assertEquals(expected, actual)
Example #2
0
 def testKubernetesTestInfra(self):
     expected = 'https://github.com/kubernetes/test-infra'
     actual = bootstrap.repository('k8s.io/test-infra')
     self.assertEquals(expected, actual)
Example #3
0
 def testKubernetesKubernetes(self):
     expected = 'https://github.com/kubernetes/kubernetes'
     actual = bootstrap.repository('k8s.io/kubernetes')
     self.assertEquals(expected, actual)
 def testWhatever(self):
     expected = 'https://foo.com/bar'
     actual = bootstrap.repository('foo.com/bar')
     self.assertEquals(expected, actual)
 def testKubernetesTestInfra(self):
     expected = 'https://github.com/kubernetes/test-infra'
     actual = bootstrap.repository('k8s.io/test-infra')
     self.assertEquals(expected, actual)
 def testKubernetesKubernetes(self):
     expected = 'https://github.com/kubernetes/kubernetes'
     actual = bootstrap.repository('k8s.io/kubernetes')
     self.assertEquals(expected, actual)