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

transaction_spec.rb « metrics « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a8538b5d6a0b737e05ae6f769906f92a19dcf7f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::Metrics::Transaction do
  describe '#run' do
    specify { expect { described_class.new.run }.to raise_error(NotImplementedError) }
  end
end