2 require "capybara/poltergeist"
4 WebMock.disable_net_connect!(:allow_localhost => true)
6 class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
7 ActionDispatch::SystemTesting::Server.silence_puma = true
9 driven_by :poltergeist, :screen_size => [1400, 1400]
12 stub_request(:get, "http://api.hostip.info/country.php?ip=127.0.0.1")
13 .to_return(:status => 404)