From 47e32be33e99f314a2fb3fa34717b59eb06069f0 Mon Sep 17 00:00:00 2001 From: Katie McCulloch Date: Thu, 9 Apr 2020 17:05:52 -0700 Subject: [PATCH] bats/remotes.bats: Add skipped test; working docs are stomped on pull --- bats/remotes.bats | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bats/remotes.bats b/bats/remotes.bats index 13ba341e30..0853f11ba7 100644 --- a/bats/remotes.bats +++ b/bats/remotes.bats @@ -115,6 +115,7 @@ teardown() { dolt push test-remote master cd dolt-repo-clones/test-repo + echo "this text should remain after pull :p" > README.md run dolt pull [[ "$output" =~ "Updating" ]] || false run dolt log @@ -123,9 +124,9 @@ teardown() { run cat LICENSE.md [ "$status" -eq 0 ] [[ "$output" =~ "updated-license" ]] || false - run cat README.md + skip run cat README.md [ "$status" -eq 0 ] - [[ "$output" =~ "readme-text" ]] || false + [[ "$output" =~ "this text should remain after pull :p" ]] || false } @test "clone a remote" {