Welcome to mirror list, hosted at ThFree Co, Russian Federation.

query_like_spec.rb « client « click_house « spec « click_house-client « gems - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b8426bd5fd8f30054f3ba4cbec30cdf17be84cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ClickHouse::Client::QueryLike do
  subject(:query) { described_class.new }

  describe '#to_sql' do
    it { expect { query.to_sql }.to raise_error(NotImplementedError) }
  end

  describe '#to_redacted_sql' do
    it { expect { query.to_redacted_sql }.to raise_error(NotImplementedError) }
  end
end