Sha256: 5d0c6364d45fe945ff9d23f834a073741122fb94962e553c91502f41dec8168d

Contents?: true

Size: 590 Bytes

Versions: 11

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 offense for a comment with non-ascii chars' do
    inspect_source(cop,
                   ['# encoding: utf-8',
                    '# 这是什么?'])
    expect(cop.offenses.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.offenses).to be_empty
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/ascii_comments_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.28.0 spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.27.1 spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.27.0 spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.26.1 spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.26.0 spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.25.0 spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.24.1 spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.24.0 spec/rubocop/cop/style/ascii_comments_spec.rb
rubocop-0.23.0 spec/rubocop/cop/style/ascii_comments_spec.rb