elasticsearch-persistence/spec/repository_spec.rb [553:567]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        let(:expected_mapping) do
          {
            dynamic: 'strict',
            properties: {
              foo: {
                type: 'object',
                properties: { bar: { type: 'text' } }
              },
              baz: { type: 'text' }
            }
          }
        end

        let(:repository) do
          RepositoryWithoutDSL.create do
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



elasticsearch-persistence/spec/repository_spec.rb [628:642]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          let(:expected_mapping) do
            {
              dynamic: 'strict',
              properties: {
                foo: {
                  type: 'object',
                  properties: { bar: { type: 'text' } }
                },
                baz: { type: 'text' }
              }
            }
          end

          let(:repository) do
            RepositoryWithoutDSL.create do
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



