teamcapybara--capybara/lib/capybara/spec/session/body_spec.rb

24 lines
899 B
Ruby
Raw Normal View History

2016-03-08 00:52:19 +00:00
# frozen_string_literal: true
2018-03-01 00:11:41 +00:00
Capybara::SpecHelper.spec '#body' do
2018-07-10 21:18:39 +00:00
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
2018-07-10 21:18:39 +00:00
context 'encoding of response between ascii and utf8' do
it 'should be valid with html entities' do
2018-05-15 19:39:40 +00:00
@session.visit('/with_html_entities')
expect(@session).to have_content('Encoding') # wait for content to appear if visit is async
2018-07-10 21:18:39 +00:00
expect { @session.body.encode!('UTF-8') }.not_to raise_error
2018-05-15 19:39:40 +00:00
end
2018-07-10 21:18:39 +00:00
it 'should be valid without html entities' do
2018-05-15 19:39:40 +00:00
@session.visit('/with_html')
expect(@session).to have_content('This is a test') # wait for content to appear if visit is async
2018-07-10 21:18:39 +00:00
expect { @session.body.encode!('UTF-8') }.not_to raise_error
end
end
end