# frozen_string_literal: true12describe WPScan::DB::Fingerprints do3describe '#unique_fingerprints' do4# Handled in #wp_unique_fingerprints5end67describe '.wp_fingerprints' do8it 'returns the expected value' do9expect(described_class.wp_fingerprints).to eql(10'path-1' => {11'hash-1' => %w[4.0 3.8],12'hash-2' => ['4.4']13},14'path-2' => {15'hash-3' => %w[3.8.1 3.8.2 3.9.1]16}17)18end19end2021describe '.wp_unique_fingerprints' do22it 'returns the expected value' do23expect(described_class.wp_unique_fingerprints).to eql('path-1' => { 'hash-2' => '4.4' })24end25end26end272829