mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 00:56:26 +00:00
dca3418bbd
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/ BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
12 lines
395 B
TypeScript
12 lines
395 B
TypeScript
import { loadFixture } from '../../../../test/util';
|
|
import { extractLockFileEntries } from './locked-version';
|
|
|
|
const gemLockFile = loadFixture('Gemfile.rails.lock');
|
|
|
|
describe('modules/manager/bundler/gemfile', () => {
|
|
it('matches the expected output', () => {
|
|
const res = extractLockFileEntries(gemLockFile);
|
|
expect(res.size).toBe(185);
|
|
expect(res).toMatchSnapshot();
|
|
});
|
|
});
|