debian-mirror-gitlab/spec/lib/error_tracking/sentry_client_spec.rb

18 lines
580 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
require 'spec_helper'
2021-04-17 20:07:23 +05:30
RSpec.describe ErrorTracking::SentryClient do
2019-02-15 15:39:39 +05:30
let(:sentry_url) { 'https://sentrytest.gitlab.com/api/0/projects/sentry-org/sentry-project' }
let(:token) { 'test-token' }
2019-03-02 22:35:43 +05:30
2021-04-17 20:07:23 +05:30
subject { described_class.new(sentry_url, token) }
2019-07-07 11:18:12 +05:30
2020-03-13 15:44:24 +05:30
it { is_expected.to respond_to :projects }
it { is_expected.to respond_to :list_issues }
it { is_expected.to respond_to :issue_details }
it { is_expected.to respond_to :issue_latest_event }
it { is_expected.to respond_to :repos }
it { is_expected.to respond_to :create_issue_link }
2019-02-15 15:39:39 +05:30
end