tests: update name of test func, Refs #356

composer-cli sources list is already covered in the existing test
This commit is contained in:
Alexander Todorov 2020-05-20 06:43:09 -04:00 committed by Alexander Todorov
parent d8de74a7d1
commit 8ab1712796

View file

@ -57,14 +57,13 @@ func TestEverything(t *testing.T) {
runComposerCLI(t, false, "projects", "list")
runComposerCLI(t, false, "projects", "info", "filesystem")
runComposerCLI(t, false, "projects", "info", "filesystem", "kernel")
runComposerCLI(t, false, "sources", "list")
runComposerCLI(t, false, "status", "show")
// Full integration tests
testCompose(t, "ami")
}
func TestSources(t *testing.T) {
func TestSourcesCommands(t *testing.T) {
sources_toml, err := ioutil.TempFile("", "SOURCES-*.TOML")
require.NoErrorf(t, err, "Could not create temporary file: %v", err)
defer os.Remove(sources_toml.Name())