kubectl/pkg
Gareth Smith fc5d4050b1 Add Fixtures struct, which can start+stop everything
Create a new set of test fixtures by doing:

```
f := test.NewFixtures("/path/to/etcd", "/path/to/apiserver")
```

Before running your integration tests, start all your fixtures:

```
err := f.Start()
Expect(err).NotTo(HaveOccurred())
```

Now that you have started your etcd and apiserver, you'll find the
apiserver listening locally on the default port. When you're done with
your testing, stop and clean up:

```
err := f.Stop()
Expect(err).NotTo(HaveOccurred())
```
2017-11-29 12:08:29 +00:00
..
apis/manifest/v1alpha1 Add travis CICD coverage. 2017-10-24 21:33:30 -07:00
framework/test Add Fixtures struct, which can start+stop everything 2017-11-29 12:08:29 +00:00
kinflate Comment unused function that depends on k8s.io/kubernetes 2017-11-28 14:35:06 -08:00