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"}, hash_with_in_words: { "Created At:" => :created_at_in_words }) end def deflist(*args) arbre { definition_list(:deflist, *args) }.to_s end def deflist_with_resource(*args) arbre(widget: Widget.first) { definition_list(:widget, *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 test "definition_list renders attribute in words" do assert_match "
Created At:
\n
less than a minute ago
", deflist_with_resource(list_types[:hash_with_in_words]) end end end