Sha256: 9749721931dbddbfd3455f40bdfc296c5f7c9800b0ed959fc8b7fc9cb1742715
Contents?: true
Size: 444 Bytes
Versions: 18
Compression:
Stored size: 444 Bytes
Contents
module CloudSesame module Query module AST describe Phrase do it 'should be a type of operator' do expect(Phrase.ancestors).to include(Abstract::SingleExpressionOperator) end it 'should have symbol :term' do expect(Phrase::SYMBOL).to eq :phrase end it 'should be set to detailed' do expect(Phrase::DETAILED).to eq true end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems