diff options
| author | mo khan <mo.khan@gmail.com> | 2020-04-14 12:43:20 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-04-14 12:43:20 -0600 |
| commit | 2b69afb35bd1b123e00d3efabce0d4c4aefdd008 (patch) | |
| tree | e750f551d075ef48f944b09d108f8a466d675c33 /spec | |
| parent | 82d9dfd9e98e90e5457c5f079e2c65252518d199 (diff) | |
Fix linter errors
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! |
