relay_spec.rb 264 B

1234567891011
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. RSpec.describe Relay do
  4. describe 'Normalizations' do
  5. describe 'inbox_url' do
  6. it { is_expected.to normalize(:inbox_url).from(' http://host.example ').to('http://host.example') }
  7. end
  8. end
  9. end