diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-10 10:37:24 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-10 10:37:24 -0600 |
| commit | b2ea3e84a6ec775ceda0e64b1045085444755f06 (patch) | |
| tree | b9c9ebcc3e89f3b7fe949316e2473bf3c54b8d51 /spec/unit/ruby | |
| parent | 7099bcdb3f3b140495e8a742fa90da3bd04ffb4f (diff) | |
Identify and resolve bottleneck with csv parsing
Diffstat (limited to 'spec/unit/ruby')
| -rw-r--r-- | spec/unit/ruby/parsers/gemfile_lock_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/ruby/parsers/gemfile_lock_spec.rb b/spec/unit/ruby/parsers/gemfile_lock_spec.rb index caa8341..cf75463 100644 --- a/spec/unit/ruby/parsers/gemfile_lock_spec.rb +++ b/spec/unit/ruby/parsers/gemfile_lock_spec.rb @@ -24,7 +24,7 @@ RSpec.describe Spandx::Ruby::Parsers::GemfileLock do specify { expect(spandx.name).to eql('spandx') } specify { expect(spandx.version).to eql(Spandx::VERSION) } - specify { expect(spandx.meta[:dependencies].map(&:name)).to match_array(%w[addressable bundler net-hippie nokogiri parslet thor zeitwerk]) } + specify { expect(spandx.meta[:dependencies].map(&:name)).to match_array(%w[addressable bundler fastest-csv net-hippie nokogiri parslet thor zeitwerk]) } specify { expect(spandx.meta[:platform]).to eql('ruby') } specify { expect(spandx.meta[:source]).to be_a_kind_of(Bundler::Source) } end |
