aboutsummaryrefslogtreecommitdiffstats
path: root/community/ruby-rugged/skip-test_read_global_config_file.patch
blob: d3a3310c3f53bd5c5e9ce25b68bcf0a6df41890c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
It seems that this test fails when user.name is NOT set in ~/.gitconfig
on the build system.

--- a/test/config_test.rb
+++ b/test/config_test.rb
@@ -17,6 +17,7 @@
   end
 
   def test_read_global_config_file
+    skip 'This test is flawed, it runs on real FS, i.e. it is not isolated'
     config = Rugged::Config.global
     refute_nil config['user.name']
     assert_nil config['core.bare']