* Fix EmojiFormatter failure * Add notification_emails.warning setting default value * Fix list spec failure and add antennas for spec response * Fix domain block spec failure to add kb custom response * Fix SearchQueryTransformer spec failure * Fix Account#matches_display_name spec failure * Fix UpdateStatusService changes mentions spec failure * Fix RuboCop Lint * Ignore brakeman warning * Fix CI failure for ignore brakeman warning * Fix migration failure * Fix README * Fix migration CI failure * Fix some spec failure * Format code for RuboCop lint failure * Fix ESlint failure * Fix haml-lint failure
18 lines
545 B
Ruby
18 lines
545 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe SearchQueryTransformer do
|
|
describe 'initialization' do
|
|
let(:parser) { SearchQueryParser.new.parse('query') }
|
|
|
|
it 'sets attributes' do
|
|
transformer = described_class.new.apply(parser)
|
|
|
|
expect(transformer.should_clauses.first).to be_a(SearchQueryTransformer::PhraseClause)
|
|
expect(transformer.must_clauses.first).to be_nil
|
|
expect(transformer.must_not_clauses.first).to be_nil
|
|
expect(transformer.filter_clauses.first).to be_nil
|
|
end
|
|
end
|
|
end
|