Removed generated HTML closing specs

This commit is contained in:
Yorick Peterse 2015-05-18 00:31:48 +02:00
parent 132d112f5f
commit 541fb2d5c3
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
require 'spec_helper'
describe Oga::XML::Lexer do
described_class::HTML_CLOSE_SELF.each do |element, terminals|
describe "lexing <#{element}> tags" do
terminals.each do |term|
it "automatically closes a <#{element}> followed by a <#{term}>" do
lex_html("<#{element}><#{term}>").should == [
[:T_ELEM_NAME, element, 1],
[:T_ELEM_END, nil, 1],
[:T_ELEM_NAME, term, 1],
[:T_ELEM_END, nil, 1]
]
end
end
end
end
end