mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-08 14:34:03 -05:00
Fix nokogiri deprecation warning
./devise/test/support/webrat/matchers.rb:6: warning:
Nokogiri::CSS.parse is deprecated and will be removed in a future
version of Nokogiri. Use Nokogiri::CSS::Parser#parse instead.
This commit is contained in:
@@ -3,7 +3,7 @@ module Webrat
|
||||
module Matchers
|
||||
class HaveSelector
|
||||
def query
|
||||
Nokogiri::CSS.parse(@expected.to_s).map do |ast|
|
||||
Nokogiri::CSS::Parser.new.parse(@expected.to_s).map do |ast|
|
||||
if ::Gem::Version.new(Nokogiri::VERSION) < ::Gem::Version.new('1.17.2')
|
||||
ast.to_xpath('//', Nokogiri::CSS::XPathVisitor.new)
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user