Sha256: dc3c40ea09e2886765b7df551ea815fadc148b1c304ae0f5c082e976fb4d056d
Contents?: true
Size: 1.74 KB
Versions: 1
Compression:
Stored size: 1.74 KB
Contents
# frozen_string_literal: true require File.expand_path('spec_helper', __dir__) module Danger describe Danger::DangerLgtm do it 'should be a plugin' do expect(Danger::DangerLgtm.new(nil)).to be_a Danger::Plugin end # # You should test your custom attributes and methods here # describe 'with Dangerfile' do before do @dangerfile = testing_dangerfile @lgtm = @dangerfile.lgtm end # Some examples for writing tests # You should replace these with your own. it 'lgtm with no violation' do @lgtm.check_lgtm expect(@dangerfile.status_report[:markdowns].length).to eq(1) end def mock(request_url: 'https://lgtm.in/p/sSuI4hm0q', actual_image_url: 'https://example.com/image.jpg') double( :[] => request_url, body: JSON.generate( actualImageUrl: actual_image_url ) ) end it 'pick random pic from lgtm.in' do allow(Net::HTTP).to receive(:start).and_return(mock) @lgtm.check_lgtm expect(@dangerfile.status_report[:markdowns][0].message) .to match(%r{https:\/\/example.com\/image.jpg}) end it 'pick random pic from lgtm.in with https_image_only option' do allow(Net::HTTP).to receive(:start).and_return(mock) @lgtm.check_lgtm https_image_only: true expect(@dangerfile.status_report[:markdowns][0].message) .to match(%r{https:\/\/example.com\/image.jpg}) end it 'use given url' do @lgtm.check_lgtm image_url: 'http://imgur.com/Irk2wyX.jpg' expect(@dangerfile.status_report[:markdowns][0].message) .to match(%r{http:\/\/imgur\.com\/Irk2wyX\.jpg}) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
danger-lgtm-1.0.1 | spec/lgtm_spec.rb |