renovate/lib/modules/manager/bundler/gemfile.spec.ts

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