mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
12 lines
254 B
Ruby
12 lines
254 B
Ruby
# 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
|