1 require "application_system_test_case"
3 class SearchTest < ApplicationSystemTestCase
4 test "click on 'where is this' sets search input value" do
5 stub_request(:get, %r{^https://nominatim\.openstreetmap\.org/reverse\?})
6 .to_return(:status => 404)
8 visit "/#map=7/1.234/6.789"
10 assert_field "Search", :with => ""
11 click_on "Where is this?"
12 assert_field "Search", :with => "1.234, 6.789"