Sha256: c203cb9f47797cae711181a6bf3e9a81cbc5f98d7d9a6ef4c9becb26af044996
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
# encoding: utf-8 require 'spec_helper' module Rubocop describe ProcessedSource do subject(:processed_source) do ProcessedSource.new( buffer, double('ast'), double('comments'), double('tokens'), double('diagnostics') ) end let(:source) do [ 'def some_method', " puts 'foo'", 'end', 'some_method' ].join("\n") end let(:buffer) do buffer = Parser::Source::Buffer.new('(string)', 1) buffer.source = source buffer end describe '#lines' do it 'is an array' do expect(processed_source.lines).to be_a(Array) end it 'has same number of elements as line count' do expect(processed_source.lines).to have(4).items end it 'contains lines as string without linefeed' do first_line = processed_source.lines.first expect(first_line).to eq('def some_method') end end describe '#[]' do context 'when an index is passed' do it 'returns the line' do expect(processed_source[2]).to eq('end') end end context 'when a range is passed' do it 'returns the array of lines' do expect(processed_source[2..3]).to eq(%w(end some_method)) end end context 'when start index and length are passed' do it 'returns the array of lines' do expect(processed_source[2, 2]).to eq(%w(end some_method)) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocop-0.10.0 | spec/rubocop/processed_source_spec.rb |