~ruther/guix-local

ref: aa21c764d65068783ae31febee2a92eb3d138a24 guix-local/gnu/packages/patches/ruby-yard-fix-skip-of-markdown-tests.patch -rw-r--r-- 838 bytes
aa21c764 — Leo Famulari gnu: python-pycrypto: Fix CVE-2013-7459. 9 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
The tests currently fail due to use of 'skip' rather than 'pending' to skip a
test usually not skipped by upstream.  This patch has been proposed upstream
at https://github.com/lsegal/yard/pull/1033

diff --git a/spec/templates/helpers/html_helper_spec.rb b/spec/templates/helpers/html_helper_spec.rb
index 84624c3..9c4fc2b 100644
--- a/spec/templates/helpers/html_helper_spec.rb
+++ b/spec/templates/helpers/html_helper_spec.rb
@@ -184,7 +184,7 @@ describe YARD::Templates::Helpers::HtmlHelper do
     it "creates tables (markdown specific)" do
       log.enter_level(Logger::FATAL) do
         unless markup_class(:markdown).to_s == "RedcarpetCompat"
-          skip "This test depends on a markdown engine that supports tables"
+          pending "This test depends on a markdown engine that supports tables"
         end
       end