Sha256: 3ecf970a8fd15a2c1e991468d1457f4446da78a74c5a9d1414072b8a97124beb

Contents?: true

Size: 1.6 KB

Versions: 3

Compression:

Stored size: 1.6 KB

Contents

require 'spec_helper'
require 'tailor/rulers/spaces_before_lbrace_ruler'

describe Tailor::Rulers::SpacesBeforeLbraceRuler do
  subject { Tailor::Rulers::SpacesBeforeLbraceRuler.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 { subject.count_spaces(lexed_line, 1).should 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 lbrace' 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 { subject.count_spaces(lexed_line, 1).should be_zero }
    end

    context '1 space before lbrace' 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 { subject.count_spaces(lexed_line, 1).should == 1 }
    end

    context '> 1 space before lbrace' do
      let(:lexed_line) do
        l = double 'LexedLine'
        l.stub(:event_index).and_return 1
        l.stub(:at).and_return [[10, 1], :on_sp, '  ']

        l
      end

      specify { subject.count_spaces(lexed_line, 3).should == 2 }
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tailor-1.4.0 spec/unit/tailor/rulers/spaces_before_lbrace_ruler_spec.rb
tailor-1.3.1 spec/unit/tailor/rulers/spaces_before_lbrace_ruler_spec.rb
tailor-1.3.0 spec/unit/tailor/rulers/spaces_before_lbrace_ruler_spec.rb