diff options
Diffstat (limited to 'spec')
| -rw-r--r-- | spec/spandx/gitlab_spec.rb | 2 | ||||
| -rw-r--r-- | spec/spec_helper.rb | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/spec/spandx/gitlab_spec.rb b/spec/spandx/gitlab_spec.rb index b564b45..997c067 100644 --- a/spec/spandx/gitlab_spec.rb +++ b/spec/spandx/gitlab_spec.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + RSpec.describe Spandx::Gitlab do specify { expect(Spandx::Gitlab::VERSION).not_to be_nil } end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index d641367..8dd5ce7 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,9 +1,11 @@ -require "bundler/setup" -require "spandx/gitlab" +# frozen_string_literal: true + +require 'bundler/setup' +require 'spandx/gitlab' RSpec.configure do |config| # Enable flags like --only-failures and --next-failure - config.example_status_persistence_file_path = ".rspec_status" + config.example_status_persistence_file_path = '.rspec_status' # Disable RSpec exposing methods globally on `Module` and `main` config.disable_monkey_patching! |
