Sha256: 801c14f413d19775065e98ecdf0476028ede1555f89f14acb831fc145a2e4b9d

Contents?: true

Size: 301 Bytes

Versions: 7

Compression:

Stored size: 301 Bytes

Contents

require '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.8 spec/gem/yard_spec.rb
reek-1.3.7 spec/gem/yard_spec.rb
reek-1.3.6 spec/gem/yard_spec.rb
reek-1.3.5 spec/gem/yard_spec.rb
reek-1.3.4 spec/gem/yard_spec.rb
reek-1.3.3 spec/gem/yard_spec.rb
reek-1.3.2 spec/gem/yard_spec.rb