test/pelusa/lint/indentation_level_test.rb in pelusa-0.2.3 vs test/pelusa/lint/indentation_level_test.rb in pelusa-0.2.4
- old
+ new
@@ -8,55 +8,55 @@
end
describe '#check' do
describe 'when the class has one method with one or less indentation levels' do
it 'returns a SuccessAnalysis' do
- klass = """
+ klass = Pelusa.to_ast """
class Foo
def initialize
if 9
3
end
end
- end""".to_ast
+ end"""
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 = """
+ klass = Pelusa.to_ast """
class Foo
def initialize
if 9
unless 3
5
end
end
end
- end""".to_ast
+ end"""
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 = """
+ klass = Pelusa.to_ast """
class Foo
def initialize
if test
a = [
(1..3).map do |num|
num
end
]
end
end
- end""".to_ast
+ end"""
analysis = @lint.check klass
analysis.failed?.must_equal true
end
end