Sha256: 748bc98550d21fe7802a0f3e1a882dc954bd2d39ac5bf30bfc1f37ec56f87c38
Contents?: true
Size: 1.27 KB
Versions: 3
Compression:
Stored size: 1.27 KB
Contents
require_relative '../lib/dependencies.rb' describe Dependencies do it "should be able to extract C# system dependencies" do system_deps = Dependencies.csharp_system_dependencies File.read( "#{File.dirname(__FILE__)}/test_data/csharp_projects/JsonNet.Test.csproj", :encoding=>'UTF-8') expect(system_deps.length).to eq(7) expect(system_deps.include?('System')).to eq(true) expect(system_deps.include?('System.Xml')).to eq(true) expect(system_deps.include?('Microsoft.CSharp')).to eq(true) end it "should be able to extract C# file dependencies" do system_deps = Dependencies.csharp_file_dependencies File.read( "#{File.dirname(__FILE__)}/test_data/csharp_projects/JsonNet.Test.csproj", :encoding=>'UTF-8') expect(system_deps.length).to eq(2) expect(system_deps.include?('dep\github\lou-parslow\NetLibs\develop\NUnit\2.6.3\bin\framework\nunit.framework.dll')).to eq(true) end it "should be able to extract ruby dependencies" do system_deps = Dependencies.ruby_dependencies File.read("#{File.dirname(__FILE__)}/test_data/example.rb") expect(system_deps.length).to eq(2) expect(system_deps.include?('json')).to eq(true) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dev_tasks-1.0.0 | spec/dependencies_spec.rb |
dev_tasks-0.0.166 | spec/dependencies_spec.rb |
dev_tasks-0.0.164 | spec/dependencies_spec.rb |