renovate/lib/modules/manager/bundler/gemfile.spec.ts
Rhys Arkins dca3418bbd refactor: lib/modules (#14488)
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
2022-03-04 09:04:02 +01:00

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();
});
});