tests: split up TestEverything

This is not a functional change, just helps to make the output more
readable to indicate which sub-command is being tested.

Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
Tom Gundersen 2020-06-07 14:07:29 +02:00 committed by Lars Karlitski
parent 099f0abeb3
commit b8f4b9eae9

View file

@ -120,11 +120,17 @@ func TestBlueprintCommands(t *testing.T) {
runComposer(t, "blueprints", "workspace", "empty")
}
func TestEverythingElse(t *testing.T) {
func TestModulesCommands(t *testing.T) {
runComposer(t, "modules", "list")
}
func TestProjectsCommands(t *testing.T) {
runComposer(t, "projects", "list")
runComposer(t, "projects", "info", "filesystem")
runComposer(t, "projects", "info", "filesystem", "kernel")
}
func TestStatusCommands(t *testing.T) {
runComposer(t, "status", "show")
}