Skip to content

Commit

Permalink
Merge pull request #1420 from rubocop/fix-and-enable-pending-spec
Browse files Browse the repository at this point in the history
Fix and re-enable a Changelog spec
  • Loading branch information
pirj authored Oct 23, 2022
2 parents c818e9a + adc716d commit 1c4b245
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions spec/project/changelog_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@
expect(contributors.sort_by(&:downcase)).to eq(contributors)
end

it 'links to github profiles', :pending do
it 'links to github profiles' do
expect(contributors).to all(
match(%r{\A\[@([^\]]+)\]: https://github.com/\1\n\z})
# The footnote reference will be lowercase, but the github path can be
# mixed case.
match(%r{\A\[@([^\]]+)\]: https://github.com/(?i)\1\n\z})
)
end
end
Expand Down

0 comments on commit 1c4b245

Please sign in to comment.