We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba7a28c commit c0ecf3bCopy full SHA for c0ecf3b
test/test_version.rb
@@ -60,7 +60,13 @@ def test_version_info_for_libxml
60
major = Regexp.last_match(1).to_i
61
minor = Regexp.last_match(2).to_i
62
bug = Regexp.last_match(3).to_i
63
- assert_equal("#{major}.#{minor}.#{bug}", Nokogiri::VERSION_INFO["libxml"]["loaded"])
+ if RbConfig::CONFIG["target_os"].include?("freebsd13") && Nokogiri::VersionInfo.instance.libxml2_using_system?
64
+ pending("https://github.com/sparklemotion/nokogiri/issues/2506") do
65
+ assert_equal("#{major}.#{minor}.#{bug}", Nokogiri::VERSION_INFO["libxml"]["loaded"])
66
+ end
67
+ else
68
69
70
71
assert(version_info["libxml"].key?("iconv_enabled"))
72
assert(version_info["libxslt"].key?("datetime_enabled"))
0 commit comments