Skip to content

Commit

Permalink
@selected may not be defined here, avoid warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
miloops committed Sep 28, 2010
1 parent 8ee27af commit adcc5e1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -197,7 +197,7 @@ def assert_select(*args, &block)
# This usually happens when passing a node/element that
# happens to be nil.
raise ArgumentError, "First argument is either selector or element to select, but nil found. Perhaps you called assert_select with an element that does not exist?"
elsif @selected
elsif defined?(@selected) && @selected
root = HTML::Node.new(nil)
root.children.concat @selected
else
Expand Down

0 comments on commit adcc5e1

Please sign in to comment.