be_url.rb 103 Bytes
Newer Older
1 2 3 4 5
RSpec::Matchers.define :be_url do |_|
  match do |actual|
    URI.parse(actual) rescue false
  end
end