Indexing of NodeSet instances.

Similar to arrays the NodeSet class now allows one to retrieve nodes for a
given index.
This commit is contained in:
Yorick Peterse 2014-06-29 23:59:27 +02:00
parent 253575dc37
commit e71fe3d6fa
2 changed files with 21 additions and 0 deletions

View File

@ -103,6 +103,16 @@ module Oga
return @nodes.pop
end
##
# Returns the node for the given index.
#
# @param [Fixnum] index
# @return [Oga::XML::Node]
#
def [](index)
return @nodes[index]
end
##
# Removes the current nodes from their owning set. The nodes are *not*
# removed from the current set.

View File

@ -128,6 +128,17 @@ describe Oga::XML::NodeSet do
end
end
context '#[]' do
before do
@n1 = Oga::XML::Element.new(:name => 'a')
@set = described_class.new([@n1])
end
example 'return a node from a given index' do
@set[0].should == @n1
end
end
context '#remove' do
before do
@n1 = Oga::XML::Element.new(:name => 'a')