Sha256: 992998dcc1b350ef47f1c8de9119e7e4ab581494eb3aa495e0c74f2b5aefd734
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
require 'test_helper' module Pelusa module Lint describe ShortIdentifiers do before do @lint = ShortIdentifiers.new end describe '#check' do describe 'when the class contains no short identifiers' do it 'returns a SuccessAnalysis' do klass = Pelusa.to_ast """ class Foo def initialize foo = 3 end end""" analysis = @lint.check(klass) analysis.successful?.must_equal true end end describe 'when the class contains short identifier from reserved list' do it 'returns a SuccessAnalysis' do klass = Pelusa.to_ast """ class Foo def initialize id = 2 pp id end end""" analysis = @lint.check(klass) analysis.successful?.must_equal true end end describe 'when the class contains a short identifier' do it 'returns a FailureAnalysis' do klass = Pelusa.to_ast """ class Foo def initialize x = 2 end end""" analysis = @lint.check(klass) analysis.failed?.must_equal true end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pelusa-0.2.4 | test/pelusa/lint/short_identifiers_test.rb |