CSS evaluator specs for :nth-of-type
This commit is contained in:
parent
abfe6e3d61
commit
518bedc3a1
|
@ -0,0 +1,48 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe 'CSS selector evaluation' do
|
||||
context ':nth-of-type pseudo class' do
|
||||
before do
|
||||
@document = parse('<root><a1 /><a2 /><a3 /><a4 /></root>')
|
||||
|
||||
@root = @document.children[0]
|
||||
@a1 = @root.children[0]
|
||||
@a2 = @root.children[1]
|
||||
@a3 = @root.children[2]
|
||||
@a4 = @root.children[3]
|
||||
end
|
||||
|
||||
example 'return a node set containing the first child node' do
|
||||
evaluate_css(@document, 'root :nth-of-type(1)').should == node_set(@a1)
|
||||
end
|
||||
|
||||
example 'return a node set containing even nodes' do
|
||||
evaluate_css(@document, 'root :nth-of-type(even)')
|
||||
.should == node_set(@a2, @a4)
|
||||
end
|
||||
|
||||
example 'return a node set containing odd nodes' do
|
||||
evaluate_css(@document, 'root :nth-of-type(odd)')
|
||||
.should == node_set(@a1, @a3)
|
||||
end
|
||||
|
||||
example 'return a node set containing every 2 nodes starting at node 2' do
|
||||
evaluate_css(@document, 'root :nth-of-type(2n+2)')
|
||||
.should == node_set(@a2, @a4)
|
||||
end
|
||||
|
||||
example 'return a node set containing all nodes' do
|
||||
evaluate_css(@document, 'root :nth-of-type(n)').should == @root.children
|
||||
end
|
||||
|
||||
example 'return a node set containing the first two nodes' do
|
||||
evaluate_css(@document, 'root :nth-of-type(-n+2)')
|
||||
.should == node_set(@a1, @a2)
|
||||
end
|
||||
|
||||
example 'return a node set containing all nodes starting at node 2' do
|
||||
evaluate_css(@document, 'root :nth-of-type(n+2)')
|
||||
.should == node_set(@a2, @a3, @a4)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue