Webrat doesn't need to worry about StringIOs
...or, we're missing a test and this is going to help us find it
This commit is contained in:
parent
11f30d1d2e
commit
610f0fc217
|
@ -10,8 +10,6 @@ module Webrat #:nodoc:
|
||||||
stringlike
|
stringlike
|
||||||
elsif Nokogiri::XML::NodeSet === stringlike
|
elsif Nokogiri::XML::NodeSet === stringlike
|
||||||
stringlike
|
stringlike
|
||||||
elsif StringIO === stringlike
|
|
||||||
Nokogiri::HTML(stringlike.string)
|
|
||||||
elsif stringlike.respond_to?(:body)
|
elsif stringlike.respond_to?(:body)
|
||||||
Nokogiri::HTML(stringlike.body.to_s)
|
Nokogiri::HTML(stringlike.body.to_s)
|
||||||
else
|
else
|
||||||
|
@ -26,8 +24,6 @@ module Webrat #:nodoc:
|
||||||
stringlike
|
stringlike
|
||||||
elsif Nokogiri::XML::NodeSet === stringlike
|
elsif Nokogiri::XML::NodeSet === stringlike
|
||||||
stringlike
|
stringlike
|
||||||
elsif StringIO === stringlike
|
|
||||||
Nokogiri::HTML(stringlike.string)
|
|
||||||
elsif stringlike.respond_to?(:body)
|
elsif stringlike.respond_to?(:body)
|
||||||
Nokogiri::HTML(stringlike.body.to_s)
|
Nokogiri::HTML(stringlike.body.to_s)
|
||||||
else
|
else
|
||||||
|
@ -42,8 +38,6 @@ module Webrat #:nodoc:
|
||||||
stringlike
|
stringlike
|
||||||
elsif Nokogiri::XML::NodeSet === stringlike
|
elsif Nokogiri::XML::NodeSet === stringlike
|
||||||
stringlike
|
stringlike
|
||||||
elsif StringIO === stringlike
|
|
||||||
Nokogiri::XML(stringlike.string)
|
|
||||||
elsif stringlike.respond_to?(:body)
|
elsif stringlike.respond_to?(:body)
|
||||||
Nokogiri::XML(stringlike.body.to_s)
|
Nokogiri::XML(stringlike.body.to_s)
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue