diff options
| author | mo khan <mo.khan@gmail.com> | 2020-01-13 19:46:36 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-01-13 19:46:36 -0700 |
| commit | 404fa217515b7f5f5340f0db131c638fdb0fe17e (patch) | |
| tree | 53af8a192e7cb2e5127322648a419f8e7c366223 /spec/integration | |
| parent | e8ee4b029b6b76a40d54a28f4db4d9632b12c7e8 (diff) | |
Add scan of .NET Core sample project
Diffstat (limited to 'spec/integration')
| -rw-r--r-- | spec/integration/dotnet/examples_spec.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/integration/dotnet/examples_spec.rb b/spec/integration/dotnet/examples_spec.rb new file mode 100644 index 0000000..aa2a757 --- /dev/null +++ b/spec/integration/dotnet/examples_spec.rb @@ -0,0 +1,13 @@ +require 'spec_helper' + +RSpec.describe ".NET Core" do + it 'scans https://github.com/microsoft/RockPaperScissorsLizardSpock.git' do + runner.clone('https://github.com/microsoft/RockPaperScissorsLizardSpock.git') + report = runner.scan + + expect(report).not_to be_empty + expect(report[:licenses].count).not_to be_zero + expect(report[:dependencies].count).not_to be_zero + end +end + |
