Sha256: 8680180ee6bd0fb4263b2912e5001106e6619c8b4abc2ca3d294403d57933673

Contents?: true

Size: 299 Bytes

Versions: 2

Compression:

Stored size: 299 Bytes

Contents

require 'open3'
require_relative '../spec_helper'

RSpec.describe 'yardoc' do
  it 'executes successfully with no warnings' do
    stdout, stderr, status = Open3.capture3('yardoc')
    expect(stdout).to_not include('[warn]')
    expect(stderr).to be_empty
    expect(status).to be_success
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
reek-3.2.1 spec/gem/yard_spec.rb
reek-3.2 spec/gem/yard_spec.rb