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: b1c15db51933ae974d7bc39d95c3f3decfcc5515 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

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