rubygem-asciidoctor/asciidoctor-disable-use-of-pending.patch

17 lines
568 B
Diff
Raw Normal View History

2013-01-19 22:53:29 +00:00
# disables use of pending statement in the test suite The required gem,
# pending, is not packaged in Fedora and since the statement is merely a task
# note, it's safe to disable it's usage for the purpose of packaging.
2012-12-19 11:03:43 +00:00
diff --git a/test/test_helper.rb b/test/test_helper.rb
2013-01-19 22:40:50 +00:00
index 3b27218..964ff59 100644
2012-12-19 11:03:43 +00:00
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
2013-06-08 21:44:03 +00:00
@@ -5,7 +5,7 @@ require 'test/unit'
require "#{File.expand_path(File.dirname(__FILE__))}/../lib/asciidoctor.rb"
2012-12-19 11:03:43 +00:00
require 'nokogiri'
-require 'pending'
+#require 'pending'
ENV['SUPPRESS_DEBUG'] ||= 'true'