From 1ca2a951d05480759af1668ed586793ff5d36a26 Mon Sep 17 00:00:00 2001 From: mo khan Date: Fri, 22 May 2020 09:28:44 -0600 Subject: Convert from using string paths to using Pathname * Extract a ./bin/run script * Extract defintion for NEWLINE * Add specs for matching yarn.lock * Add specs for Report * Convert package_manager to pathname * Display path in report * matches? to match? --- spec/unit/python/parsers/pipfile_lock_spec.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 spec/unit/python/parsers/pipfile_lock_spec.rb (limited to 'spec/unit/python/parsers') diff --git a/spec/unit/python/parsers/pipfile_lock_spec.rb b/spec/unit/python/parsers/pipfile_lock_spec.rb new file mode 100644 index 0000000..59fff52 --- /dev/null +++ b/spec/unit/python/parsers/pipfile_lock_spec.rb @@ -0,0 +1,23 @@ +# frozen_string_literal: true + +RSpec.describe Spandx::Python::Parsers::PipfileLock do + describe '#parse' do + subject { described_class.new.parse(path) } + + let(:path) { fixture_file('pip/Pipfile.lock') } + + def build(name, version, path) + Spandx::Core::Dependency.new(name: name, version: version, path: path) + end + + specify { expect(subject).to match_array([build('six', '1.13.0', path)]) } + end + + describe '#match?' do + it { is_expected.to be_match(to_path('Pipfile.lock')) } + it { is_expected.to be_match(to_path('./Pipfile.lock')) } + it { is_expected.to be_match(to_path('/root/Pipfile.lock')) } + it { is_expected.not_to be_match(to_path('sitemap.xml')) } + it { is_expected.not_to be_match(to_path('/root/notPipfile.lock')) } + end +end -- cgit v1.2.3