# frozen_string_literal: true require File.expand_path('spec_helper', __dir__) module Danger describe Danger::DangerWCC do it 'should be a plugin' do expect(Danger::DangerWCC.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.wcc end end end end