Sha256: b3fb1a3f495368c409d00ddc250bc88bc80359fcfffd492a7f0fd81f947b9180

Contents?: true

Size: 368 Bytes

Versions: 7

Compression:

Stored size: 368 Bytes

Contents

require File.join(File.dirname(File.dirname(File.expand_path(__FILE__))), 'spec_helper')
require 'tempfile'

describe 'yardoc' do
  before :each do
    stderr_file = Tempfile.new('yardoc')
    stderr_file.close
    @stdout = `yardoc 2> #{stderr_file.path}`
    @stderr = IO.read(stderr_file.path)
  end
  it 'raises no warnings' do
    @stderr.should == ''
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
reek-1.3.1 spec/gem/yard_spec.rb
reek-1.3 spec/gem/yard_spec.rb
reek-1.2.13 spec/gem/yard_spec.rb
reek-1.2.12 spec/gem/yard_spec.rb
reek-1.2.11 spec/gem/yard_spec.rb
reek-1.2.10 spec/gem/yard_spec.rb
reek-1.2.9 spec/gem/yard_spec.rb