Sha256: 177786c641063be41ce23e8cb3726f580fb005d6f48499fcb71a4f331f436740
Contents?: true
Size: 723 Bytes
Versions: 13
Compression:
Stored size: 723 Bytes
Contents
Capybara::SpecHelper.spec '#body' do it "should return the unmodified page body" do @session.visit('/') expect(@session).to have_content('Hello world!') # wait for content to appear if visit is async expect(@session.body).to include('Hello world!') end if "".respond_to?(:encoding) context "encoding of response between ascii and utf8" do it "should be valid with html entities" do @session.visit('/with_html_entities') expect { @session.body.encode!("UTF-8") }.not_to raise_error end it "should be valid without html entities" do @session.visit('/with_html') expect { @session.body.encode!("UTF-8") }.not_to raise_error end end end end
Version data entries
13 entries across 13 versions & 4 rubygems