Sha256: 09f94c4b27175411860ead11e65ee4748f897eefdd3ac5127b779e86f583db5a
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true require File.expand_path("spec_helper", __dir__) module Danger describe Danger::DangerGitlabGraph do it "should be a plugin" do expect(Danger::DangerGitlabGraph.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 @my_plugin = @dangerfile.gitlab_graph allow(@my_plugin.gitlab).to receive(:api).and_return(json) end # Some examples for writing tests # You should replace these with your own. it "Warns on a monday" do monday_date = Date.parse("2016-07-11") allow(Date).to receive(:today).and_return monday_date @my_plugin.warn_on_mondays expect(@dangerfile.status_report[:warnings]).to eq(["Trying to merge code on a Monday"]) end it "Does nothing on a tuesday" do monday_date = Date.parse("2016-07-12") allow(Date).to receive(:today).and_return monday_date @my_plugin.warn_on_mondays expect(@dangerfile.status_report[:warnings]).to eq([]) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
danger-gitlab_graph-0.0.7 | spec/gitlab_graph_spec.rb |