X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/497009ed2b98dfdeeb349e891c1fbd88d14ff087..d73a4efef0311ae7fe0afe4bd895d74ba4be2c4c:/test/helpers/browse_helper_test.rb
diff --git a/test/helpers/browse_helper_test.rb b/test/helpers/browse_helper_test.rb
index 5d5c038c2..e72f370d0 100644
--- a/test/helpers/browse_helper_test.rb
+++ b/test/helpers/browse_helper_test.rb
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-require 'test_helper'
+require "test_helper"
class BrowseHelperTest < ActionView::TestCase
include ERB::Util
@@ -90,26 +90,32 @@ class BrowseHelperTest < ActionView::TestCase
html = format_value("phone", "+1234567890")
assert_dom_equal "+1234567890", html
+
+ html = format_value("wikipedia", "Test")
+ assert_dom_equal "Test", html
+
+ html = format_value("wikidata", "Q42")
+ assert_dom_equal "Q42", html
end
def test_icon_tags
tags = icon_tags(current_nodes(:node_with_name))
assert_equal 3, tags.count
- assert tags.include?(["building", "yes"])
- assert tags.include?(["tourism", "museum"])
- assert tags.include?(["shop", "gift"])
+ assert tags.include?(%w(building yes))
+ assert tags.include?(%w(tourism museum))
+ assert tags.include?(%w(shop gift))
tags = icon_tags(nodes(:node_with_name_current_version))
assert_equal 3, tags.count
- assert tags.include?(["building", "yes"])
- assert tags.include?(["tourism", "museum"])
- assert tags.include?(["shop", "gift"])
+ assert tags.include?(%w(building yes))
+ assert tags.include?(%w(tourism museum))
+ assert tags.include?(%w(shop gift))
tags = icon_tags(nodes(:node_with_name_redacted_version))
assert_equal 3, tags.count
- assert tags.include?(["building", "yes"])
- assert tags.include?(["tourism", "museum"])
- assert tags.include?(["shop", "gift"])
+ assert tags.include?(%w(building yes))
+ assert tags.include?(%w(tourism museum))
+ assert tags.include?(%w(shop gift))
end
def test_wiki_link