Include Capybara#attach_file tests

This commit is contained in:
Matthew Mongeau 2011-07-22 10:41:50 -04:00
parent 0c8e347b61
commit 8cad037afc
1 changed files with 5 additions and 0 deletions

View File

@ -86,6 +86,11 @@ describe Capybara::Session, "with TestApp" do
@session = Capybara::Session.new(:reusable_webkit, TestApp)
end
def extract_results(session)
YAML.load Nokogiri::HTML(session.body).xpath("//pre[@id='results']").first.text
end
it_should_behave_like 'attach_file'
# it_should_behave_like "session"
# it_should_behave_like "session with javascript support"
end