summaryrefslogtreecommitdiff
path: root/spec/support/matchers/be_url.rb
blob: f8096af1b22f9cdd5bf3fab0af28ed657612caba (plain)
1
2
3
4
5
RSpec::Matchers.define :be_url do |_|
  match do |actual|
    URI.parse(actual) rescue false
  end
end