colorls/spec/color_ls_spec.rb
Claudio Bley 6b35f942aa Fix offenses newly reported by rubocop-rspec
The pessimistic version contraint on rubocop-rspec permitted minor version
updates of the dependency, which broke the tests again since version 2.9.0
introduced / changed offenses.

Allow only the patch version to increase automatically to avoid this in the future.
2022-02-28 21:37:11 +01:00

9 lines
164 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe ColorLS do
it 'has a version number' do
expect(ColorLS::VERSION).not_to be_nil
end
end