export const stringMatchFixtures = {
  matchCases: [
    {
      input: 'Hello  World',
      keyword: 'hello world',
      expected: true,
    },
    {
      input: 'A  B   C',
      keyword: 'a b c',
      expected: true,
    },
  ],
  noMatchCase: {
    input: 'alpha beta',
    keyword: 'gamma',
    expected: false,
  },
};
