5 lines
103 B
Ruby
5 lines
103 B
Ruby
RSpec::Matchers.define :be_url do |_|
|
|
match do |actual|
|
|
URI.parse(actual) rescue false
|
|
end
|
|
end
|