require_relative '../test_case' require 'staticpress/metadata' class MetadataTest < TestCase let(:meta) { Staticpress::Metadata.new } let(:another_meta) { Staticpress::Metadata.new :layout => 'post_index', :categories => %w[programming], :tags => %w[code tutorial] } def test__chevron end def test_inspect assert_equal '#', meta.inspect assert_equal '#', another_meta.inspect end end