Fix last cop

This commit is contained in:
darthjee
2024-07-29 16:02:36 -03:00
parent 19bbae5dd8
commit 982201d954
3 changed files with 2 additions and 18 deletions

View File

@@ -1,16 +0,0 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2024-07-29 18:58:58 UTC using RuboCop version 1.59.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 2
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
# SupportedStyles: single_quotes, double_quotes
Style/StringLiterals:
Exclude:
- 'spec/app/font_helper/font_spec.rb'
- 'spec/app/font_helper_spec.rb'

View File

@@ -10,7 +10,7 @@ describe FontHelper::Font do
let(:characters) { build_list(:character, 1) }
let(:character) { build(:character) }
describe "#<<" do
describe '#<<' do
context 'when there are not characters' do
let(:characters) { [] }

View File

@@ -3,5 +3,5 @@
require 'spec_helper'
describe FontHelper do
xit "does domething"
xit 'does domething'
end