require 'test_helper' module ExpressAdmin class DefinitionListTest < ActiveSupport::TestCase def assigns {list_types: list_types} end def helpers mock_action_view end def list_types @list_types ||= OpenStruct.new( array: ["field1", "field2"], hash: {term1: "def1", term2: "def2", term3: "def3"}) end def deflist(*args) arbre { definition_list(:deflist, *args) }.to_s end test "accepts array as input" do assert deflist(list_types[:array]) end test "accepts hash as input" do assert deflist(list_types[:hash]) end test "uses keys as labels and values as definitions" do assert_match /
Term1/, deflist(list_types[:hash]) end DEFLIST_MARKUP_ARR = <<-HTML
Field1:
{{resource.field1}}
Field2:
{{resource.field2}}
HTML DEFLIST_MARKUP_HASH = <<-HTML
Term1:
def1
Term2:
def2
Term3:
def3
HTML test "definition_list renders correct markup with hash input" do assert_equal DEFLIST_MARKUP_HASH, deflist(list_types[:hash]) end test "definition_list renders correct markup with array input" do assert_equal DEFLIST_MARKUP_ARR, deflist(list_types[:array]) end end end