debian-mirror-gitlab/spec/lib/service_ping/build_payload_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
368 B
Ruby
Raw Permalink Normal View History

2021-09-30 23:02:18 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-04-23 21:23:45 +05:30
RSpec.describe ServicePing::BuildPayload, feature_category: :service_ping do
2021-09-30 23:02:18 +05:30
describe '#execute', :without_license do
subject(:service_ping_payload) { described_class.new.execute }
2023-07-09 08:55:56 +05:30
include_context 'stubbed service ping metrics definitions'
2021-09-30 23:02:18 +05:30
2022-07-23 23:45:48 +05:30
it_behaves_like 'complete service ping payload'
2021-09-30 23:02:18 +05:30
end
end