You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2020/06/28 22:14:21 UTC

[whimsy] branch master updated: Show what we are working with

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new a1d9871  Show what we are working with
a1d9871 is described below

commit a1d98713dfe2c483f48029d7a75c097625218bf1
Author: Sebb <se...@apache.org>
AuthorDate: Sun Jun 28 23:14:13 2020 +0100

    Show what we are working with
---
 lib/spec/lib/svn_spec.rb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/spec/lib/svn_spec.rb b/lib/spec/lib/svn_spec.rb
index 2e8ad4a..29475dd 100644
--- a/lib/spec/lib/svn_spec.rb
+++ b/lib/spec/lib/svn_spec.rb
@@ -227,6 +227,9 @@ describe ASF::SVN do
     it "passwordStdinOK? should return true or false" do
       res = ASF::SVN.passwordStdinOK?
       expect(res).to be(true).or be(false)
+      # show what we are working with
+      ver = %x(svn --version --quiet).chomp
+      puts "\n>> version = '#{ver}' passwordStdinOK = #{res}"
     end
   end