Sha256: afa59dc2aa18047f415413357cc3005560297cd3a1e1524353703fd9da8b451e
Contents?: true
Size: 960 Bytes
Versions: 2
Compression:
Stored size: 960 Bytes
Contents
require 'spec_helper' require 'ronin/web/html' describe Ronin::Web::HTML do describe ".parse" do let(:html) do <<~HTML <html> <body>Hello</body> </html> HTML end it "must parse an HTML String and return a Nokogiri::HTML::Document" do doc = subject.parse(html) expect(doc).to be_kind_of(Nokogiri::HTML::Document) expect(doc.at('body').inner_text).to eq("Hello") end context "when given a block" do it "must yield the Nokogiri::HTML::Document object" do expect { |b| subject.parse(html,&b) }.to yield_with_args(Nokogiri::HTML::Document) end end end describe ".build" do it "must build an HTML document" do doc = subject.build do html { body { div { text("hello") } } } end expect(doc.to_html).to include("<html><body><div>hello</div></body></html>") end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ronin-web-1.0.0.beta2 | spec/html_spec.rb |
ronin-web-1.0.0.beta1 | spec/html_spec.rb |