1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-27 06:18:17 +09:00
mastodon/spec/models/relay_spec.rb

12 lines
264 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Relay do
describe 'Normalizations' do
describe 'inbox_url' do
it { is_expected.to normalize(:inbox_url).from(' http://host.example ').to('http://host.example') }
end
end
end