Undo changes from experimenting

This commit is contained in:
Samuel Sieg
2023-03-12 10:56:12 +01:00
parent 47af6d9483
commit 6232175ef8
2 changed files with 2 additions and 3 deletions

View File

@@ -3,8 +3,8 @@ require_relative "cli_test_case"
class CliBuildTest < CliTestCase
test "pull" do
run_command("pull").tap do |output|
assert_match /docker image rm --force dhh\/app:999 on 1\.1\.1\.2/, output
assert_match /docker pull dhh\/app:999 on 1\.1\.1\.1/, output
assert_match /docker image rm --force dhh\/app:999/, output
assert_match /docker pull dhh\/app:999/, output
end
end