1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-19 00:59:08 +09:00
YuruToot/spec/models/account_alias_spec.rb

12 lines
254 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe AccountAlias do
describe 'Normalizations' do
describe 'acct' do
it { is_expected.to normalize(:acct).from(' @username@domain ').to('username@domain') }
end
end
end