Sha256: 65a035abf109aa289af690fdc53fb10f0232adef37c95a9cf1159c9716dbf009
Contents?: true
Size: 1.6 KB
Versions: 6
Compression:
Stored size: 1.6 KB
Contents
require 'test_helper' module Pelusa module Lint describe IndentationLevel do before do @lint = IndentationLevel.new end describe '#check' do describe 'when the class has one method with one or less indentation levels' do it 'returns a SuccessAnalysis' do klass = """ class Foo def initialize if 9 3 end end end""".to_ast analysis = @lint.check(klass) analysis.successful?.must_equal true end end describe 'when the class has one method with more than one indentation level' do it 'returns a FailureAnalysis' do klass = """ class Foo def initialize if 9 unless 3 5 end end end end""".to_ast analysis = @lint.check(klass) analysis.failed?.must_equal true end end describe "when there is method which produces nested list" do it 'returns a FailureAnalysis' do klass = """ class Foo def initialize if test a = [ (1..3).map do |num| num end ] end end end""".to_ast analysis = @lint.check klass analysis.failed?.must_equal true end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems