mastodon/spec/models/featured_tag_spec.rb
2024-09-04 05:12:40 +00:00

12 lines
237 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe FeaturedTag do
describe 'Normalizations' do
describe 'name' do
it { is_expected.to normalize(:name).from(' #hashtag ').to('hashtag') }
end
end
end