Sha256: f7b3ada838d00e0a07038fffeb75e048c4f9ae1e64880cb8cd466784df713e21
Contents?: true
Size: 590 Bytes
Versions: 8
Compression:
Stored size: 590 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Rubocop::Cop::Style::AsciiComments do subject(:cop) { described_class.new } it 'registers an offence for a comment with non-ascii chars' do inspect_source(cop, ['# encoding: utf-8', '# 这是什么?']) expect(cop.offences.size).to eq(1) expect(cop.messages) .to eq(['Use only ascii symbols in comments.']) end it 'accepts comments with only ascii chars' do inspect_source(cop, ['# AZaz1@$%~,;*_`|']) expect(cop.offences).to be_empty end end
Version data entries
8 entries across 8 versions & 2 rubygems