debian-mirror-gitlab/spec/lib/gitlab/performance_bar/with_top_level_warnings_spec.rb

30 lines
708 B
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
require 'fast_spec_helper'
require 'rspec-parameterized'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::PerformanceBar::WithTopLevelWarnings do
2019-12-04 20:38:33 +05:30
using RSpec::Parameterized::TableSyntax
subject { Module.new }
before do
subject.singleton_class.prepend(described_class)
end
describe '#has_warnings?' do
where(:has_warnings, :results) do
false | { data: {} }
false | { data: { gitaly: { warnings: [] } } }
true | { data: { gitaly: { warnings: [1] } } }
true | { data: { gitaly: { warnings: [] }, redis: { warnings: [1] } } }
end
with_them do
it do
expect(subject.has_warnings?(results)).to eq(has_warnings)
end
end
end
end