Sha256: 01cc67fd0117b59fb02e7adf75879ec9e9c4b1a65ede4216d1a7edc8d31495a7
Contents?: true
Size: 480 Bytes
Versions: 8
Compression:
Stored size: 480 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Rubocop::Cop::Style::BlockComments do subject(:cop) { described_class.new } it 'registers an offence for block comments' do inspect_source(cop, ['=begin', 'comment', '=end']) expect(cop.offences.size).to eq(1) end it 'accepts regular comments' do inspect_source(cop, ['# comment']) expect(cop.offences).to be_empty end end
Version data entries
8 entries across 8 versions & 2 rubygems