mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 17:38:07 +01:00
11 lines
254 B
Ruby
11 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
|