File: disable-test-global-config.patch

package info (click to toggle)
ruby-rugged 1.9.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,752 kB
  • sloc: ansic: 8,722; ruby: 7,473; sh: 99; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: disable test trying to read global user.name config
  This config option is not created before the build
Author: Cédric Boutillier <boutil@debian.org>
Last-Update: 2021-01-06

--- a/test/config_test.rb
+++ b/test/config_test.rb
@@ -35,7 +35,7 @@
 
   def test_read_global_config_file
     config = Rugged::Config.global
-    refute_nil config['user.name']
+    #refute_nil config['user.name']
     assert_nil config['core.bare']
   end