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:
parent
099f0abeb3
commit
b8f4b9eae9
1 changed files with 7 additions and 1 deletions
|
|
@ -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")
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue