mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3b0d2a3d6d
These offenses appear when you create a gem with `bundle gem foo` and run `rubocop` over it. Initially, there were around 45 offenses detected, but with #3731 and this, the number of offenses have been reduced to 2. Signed-off-by: Utkarsh Gupta <utkarsh@debian.org> https://github.com/rubygems/rubygems/commit/fe9dcaa1b4
11 lines
254 B
Text
11 lines
254 B
Text
# frozen_string_literal: true
|
|
|
|
RSpec.describe <%= config[:constant_name] %> do
|
|
it "has a version number" do
|
|
expect(<%= config[:constant_name] %>::VERSION).not_to be nil
|
|
end
|
|
|
|
it "does something useful" do
|
|
expect(false).to eq(true)
|
|
end
|
|
end
|