1 require 'integration_helper'
3 class BrowserUnsupported < ActionDispatch::IntegrationTest
4 WARNING_FRAGMENT = 'Your web browser is missing some of the features'
6 test 'warning if no File API' do
7 Capybara.current_driver = :poltergeist_without_file_api
9 assert_text :visible, WARNING_FRAGMENT
12 test 'no warning if File API' do
15 assert_no_text :visible, WARNING_FRAGMENT