Skip to content

Commit

Permalink
add verbose for apply & update
Browse files Browse the repository at this point in the history
  • Loading branch information
mycrEEpy committed Dec 26, 2024
1 parent 836c165 commit 69e9969
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions internal/pakku/pakku_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ func TestApt(t *testing.T) {
mustSucceed(t, container, []string{"pakku", "init"})
mustSucceed(t, container, []string{"pakku", "config"})
mustSucceed(t, container, []string{"pakku", "add", "apt", "vim"})
mustSucceed(t, container, []string{"pakku", "apply"})
mustSucceed(t, container, []string{"pakku", "update"})
mustSucceed(t, container, []string{"pakku", "apply", "-verbose"})
mustSucceed(t, container, []string{"pakku", "update", "-verbose"})
mustSucceed(t, container, []string{"pakku", "remove", "apt", "vim"})
}

Expand All @@ -76,8 +76,8 @@ func TestDnf(t *testing.T) {
mustSucceed(t, container, []string{"pakku", "init"})
mustSucceed(t, container, []string{"pakku", "config"})
mustSucceed(t, container, []string{"pakku", "add", "dnf", "vim"})
mustSucceed(t, container, []string{"pakku", "apply"})
mustSucceed(t, container, []string{"pakku", "update"})
mustSucceed(t, container, []string{"pakku", "apply", "-verbose"})
mustSucceed(t, container, []string{"pakku", "update", "-verbose"})
mustSucceed(t, container, []string{"pakku", "remove", "dnf", "vim"})
}

Expand All @@ -99,8 +99,8 @@ func TestBrew(t *testing.T) {
mustSucceed(t, container, []string{"pakku", "init"})
mustSucceed(t, container, []string{"pakku", "config"})
mustSucceed(t, container, []string{"pakku", "add", "brew", "vim"})
mustSucceed(t, container, []string{"pakku", "apply"})
mustSucceed(t, container, []string{"pakku", "update"})
mustSucceed(t, container, []string{"pakku", "apply", "-verbose"})
mustSucceed(t, container, []string{"pakku", "update", "-verbose"})
mustSucceed(t, container, []string{"pakku", "remove", "brew", "vim"})
}

Expand All @@ -122,7 +122,7 @@ func TestPkgx(t *testing.T) {
mustSucceed(t, container, []string{"pakku", "init"})
mustSucceed(t, container, []string{"pakku", "config"})
mustSucceed(t, container, []string{"pakku", "add", "pkgx", "vim.org@9"})
mustSucceed(t, container, []string{"pakku", "apply"})
mustSucceed(t, container, []string{"pakku", "update"})
mustSucceed(t, container, []string{"pakku", "apply", "-verbose"})
mustSucceed(t, container, []string{"pakku", "update", "-verbose"})
mustSucceed(t, container, []string{"pakku", "remove", "pkgx", "vim.org@9"})
}

0 comments on commit 69e9969

Please sign in to comment.