+
+ test "tooltip shows for Layers button" do
+ visit "/"
+
+ assert_no_selector ".tooltip"
+ button = find ".control-layers .control-button"
+ button.hover
+ assert_selector ".tooltip", :text => "Layers"
+ end
+
+ test "tooltip shows for Map Key button on Standard layer" do
+ visit "/"
+
+ assert_no_selector ".tooltip"
+ button = find ".control-key .control-button"
+ button.hover
+ tooltip = find ".tooltip"
+ tooltip.assert_text "Map Key"
+ tooltip.assert_no_text "not available"
+ end
+
+ test "tooltip shows for Map Key button on a layer without a key provided" do
+ visit "/#layers=Y" # assumes that CyclOSM layer has no map key
+
+ assert_no_selector ".tooltip"
+ button = find ".control-key .control-button"
+ button.hover
+ tooltip = find ".tooltip"
+ tooltip.assert_text "Map Key"
+ tooltip.assert_text "not available"
+ end