mirror of https://github.com/renovatebot/renovate
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
import { Fixtures } from '../../../../test/fixtures';
|
|
import { extractLockFileEntries } from './locked-version';
|
|
|
|
const gemLockFile = Fixtures.get('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();
|
|
});
|
|
});
|