Skip to content

Commit

Permalink
Update test for bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Apr 2, 2024
1 parent 10fcb0f commit ec5a552
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/pakman/bootstrap_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ defmodule Pakman.BootstrapTest do
System.put_env("GITHUB_REPOSITORY", "artellectual/artellectual.com")

Pakman.SystemMock
|> expect(:cmd, 2, fn _binary, _options ->
|> expect(:cmd, 3, fn _binary, _options ->
:ok
end)

Expand All @@ -33,7 +33,7 @@ defmodule Pakman.BootstrapTest do
System.put_env("GITHUB_REPOSITORY", "upmaru/uplink-caddy")

Pakman.SystemMock
|> expect(:cmd, 2, fn _binary, _options ->
|> expect(:cmd, 3, fn _binary, _options ->
:ok
end)

Expand All @@ -47,7 +47,7 @@ defmodule Pakman.BootstrapTest do
System.put_env("GITHUB_REPOSITORY", "upmaru/rails")

Pakman.SystemMock
|> expect(:cmd, 2, fn _binary, _options ->
|> expect(:cmd, 3, fn _binary, _options ->
:ok
end)

Expand All @@ -65,7 +65,7 @@ defmodule Pakman.BootstrapTest do
System.put_env("GITHUB_REPOSITORY", "upmaru/elixir")

Pakman.SystemMock
|> expect(:cmd, 2, fn _binary, _options ->
|> expect(:cmd, 3, fn _binary, _options ->
:ok
end)

Expand All @@ -82,7 +82,7 @@ defmodule Pakman.BootstrapTest do
System.put_env("GITHUB_WORKSPACE", "tmp/next")

Pakman.SystemMock
|> expect(:cmd, 2, fn _binary, _options ->
|> expect(:cmd, 3, fn _binary, _options ->
:ok
end)

Expand Down

0 comments on commit ec5a552

Please sign in to comment.