Sha256: 06fca89998f1c1adaa12091515ff9d6eb2a8954ed620f822a7339208c072ffc7
Contents?: true
Size: 465 Bytes
Versions: 21
Compression:
Stored size: 465 Bytes
Contents
Then %r{I should see an image with a path of "([^"]*)"} do |path| expect(page).to have_css("img[src^='#{path}']") end Then %r{^the file at "([^"]*)" is the same as "([^"]*)"$} do |web_file, path| expected = IO.read(path) actual = if web_file.match %r{^https?://} Net::HTTP.get(URI.parse(web_file)) else visit(web_file) page.body end actual.force_encoding("UTF-8") if actual.respond_to?(:force_encoding) expect(actual).to eq(expected) end
Version data entries
21 entries across 21 versions & 5 rubygems