Sha256: a7ecd6e3016774e0c8422fe537d7ef2aeba9a5813d425c0c667cc9055a65beba
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
require 'spec_helper' require 'tailor/rulers/spaces_before_rbrace_ruler' describe Tailor::Rulers::SpacesBeforeRbraceRuler do subject { Tailor::Rulers::SpacesBeforeRbraceRuler.new(nil, {}) } before { Tailor::Logger.stub(:log) } describe '#count_spaces' do context 'lexed_line.event_index is 0' do let(:lexed_line) do l = double 'LexedLine' l.stub(:event_index).and_return 0 l.stub(:at).and_return nil l end specify { expect(subject.count_spaces(lexed_line, 1)).to be_zero } it 'sets @do_measurement to false' do expect { subject.count_spaces(lexed_line, 1) }. to change { subject.instance_variable_get(:@do_measurement) }. from(true).to(false) end end context 'no space before rbrace' do let(:lexed_line) do l = double 'LexedLine' l.stub(:event_index).and_return 1 l.stub(:at).and_return [[10, 0], :on_const, 'HI'] l end specify { expect(subject.count_spaces(lexed_line, 1)).to be_zero } end context '1 space before rbrace' do let(:lexed_line) do l = double 'LexedLine' l.stub(:event_index).and_return 1 l.stub(:at).and_return [[10, 0], :on_sp, ' '] l end specify { expect(subject.count_spaces(lexed_line, 1)).to eq 1 } end context '> 1 space before rbrace' do let(:lexed_line) do l = double 'LexedLine' l.stub(:event_index).and_return 1 l.stub(:at).and_return [[10, 0], :on_sp, ' '] l end specify { expect(subject.count_spaces(lexed_line, 1)).to eq 2 } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tailor-1.4.1 | spec/unit/tailor/rulers/spaces_before_rbrace_ruler_spec.rb |