Skip to content

Commit

Permalink
Fixed expected test data according to lowercase keys in package info
Browse files Browse the repository at this point in the history
  • Loading branch information
melter2m committed Jul 18, 2023
1 parent ac8420e commit 1ab2152
Showing 1 changed file with 37 additions and 37 deletions.
74 changes: 37 additions & 37 deletions spec/lib/license_finder/package_managers/conan_info_parser_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,55 +9,55 @@ module LicenseFinder
[
{
'name' => 'conanfile.txt',
'ID' => '4c3dfe99a9c2d5003148e0054b9bacf58ac69f66',
'BuildID' => 'None',
'Requires' => ['Poco/1.7.9@pocoproject/stable', 'OpenSSL/1.0.2l@conan/stable', 'range-v3/0.3.0@ericniebler/stable']
'id' => '4c3dfe99a9c2d5003148e0054b9bacf58ac69f66',
'buildid' => 'None',
'requires' => ['Poco/1.7.9@pocoproject/stable', 'OpenSSL/1.0.2l@conan/stable', 'range-v3/0.3.0@ericniebler/stable']
},
{
'name' => 'OpenSSL/1.0.2l@conan/stable',
'ID' => '0197c20e330042c026560da838f5b4c4bf094b8a',
'BuildID' => 'None',
'Remote' => 'conan-center=https://center.conan.io',
'URL' => 'http://github.com/lasote/conan-openssl',
'License' => 'The current OpenSSL licence is an \'Apache style\' license: https://www.openssl.org/source/license.html',
'Updates' => 'Version not checked',
'Creation date' => '2017-08-21 10:28:57',
'Required by' => ['Poco/1.7.9@pocoproject/stable', 'conanfile.txt'],
'Requires' => ['zlib/1.2.11@conan/stable']
'id' => '0197c20e330042c026560da838f5b4c4bf094b8a',
'buildid' => 'None',
'remote' => 'conan-center=https://center.conan.io',
'url' => 'http://github.com/lasote/conan-openssl',
'license' => 'The current OpenSSL licence is an \'Apache style\' license: https://www.openssl.org/source/license.html',
'updates' => 'Version not checked',
'creation date' => '2017-08-21 10:28:57',
'required by' => ['Poco/1.7.9@pocoproject/stable', 'conanfile.txt'],
'requires' => ['zlib/1.2.11@conan/stable']
},
{
'name' => 'Poco/1.7.9@pocoproject/stable',
'ID' => '33fe7ea34efc04fb6d81fabd9e34f51da57f9e09',
'BuildID' => 'None',
'Remote' => 'conan-center=https://center.conan.io',
'URL' => 'http://github.com/lasote/conan-poco',
'License' => 'The Boost Software License 1.0',
'Updates' => 'Version not checked',
'Creation date' => '2017-09-20 16:51:10',
'Required by' => ['conanfile.txt'],
'Requires' => ['OpenSSL/1.0.2l@conan/stable']
'id' => '33fe7ea34efc04fb6d81fabd9e34f51da57f9e09',
'buildid' => 'None',
'remote' => 'conan-center=https://center.conan.io',
'url' => 'http://github.com/lasote/conan-poco',
'license' => 'The Boost Software License 1.0',
'updates' => 'Version not checked',
'creation date' => '2017-09-20 16:51:10',
'required by' => ['conanfile.txt'],
'requires' => ['OpenSSL/1.0.2l@conan/stable']
},
{
'name' => 'range-v3/0.3.0@ericniebler/stable',
'ID' => '5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9',
'BuildID' => 'None',
'Remote' => 'conan-center=https://center.conan.io',
'URL' => 'https://github.com/ericniebler/range-v3',
'License' => 'Boost Software License - Version 1.0 - August 17th, 2003',
'Updates' => 'Version not checked',
'Creation date' => '2017-06-30 13:20:56',
'Required by' => ['conanfile.txt']
'id' => '5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9',
'buildid' => 'None',
'remote' => 'conan-center=https://center.conan.io',
'url' => 'https://github.com/ericniebler/range-v3',
'license' => 'Boost Software License - Version 1.0 - August 17th, 2003',
'updates' => 'Version not checked',
'creation date' => '2017-06-30 13:20:56',
'required by' => ['conanfile.txt']
},
{
'name' => 'zlib/1.2.11@conan/stable',
'ID' => '09512ff863f37e98ed748eadd9c6df3e4ea424a8',
'BuildID' => 'None',
'Remote' => 'conan-center=https://center.conan.io',
'URL' => 'http://github.com/lasote/conan-zlib',
'License' => 'http://www.zlib.net/zlib_license.html',
'Updates' => 'Version not checked',
'Creation date' => '2017-09-25 14:42:53',
'Required by' => ['OpenSSL/1.0.2l@conan/stable']
'id' => '09512ff863f37e98ed748eadd9c6df3e4ea424a8',
'buildid' => 'None',
'remote' => 'conan-center=https://center.conan.io',
'url' => 'http://github.com/lasote/conan-zlib',
'license' => 'http://www.zlib.net/zlib_license.html',
'updates' => 'Version not checked',
'creation date' => '2017-09-25 14:42:53',
'required by' => ['OpenSSL/1.0.2l@conan/stable']
}
]
end
Expand Down

0 comments on commit 1ab2152

Please sign in to comment.