summaryrefslogtreecommitdiff
path: root/spec/lib/banzai/querying_spec.rb
blob: 8f95816b073c9b600364f09ff2b591836ec8fa17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Banzai::Querying, feature_category: :team_planning do
  describe '.css' do
    it 'optimizes queries for elements with classes' do
      document = double(:document)

      expect(document).to receive(:xpath).with(/^descendant::a/)

      described_class.css(document, 'a.gfm')
    end
  end
end