summaryrefslogtreecommitdiff
path: root/spec/lib/error_tracking/sentry_client_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/error_tracking/sentry_client_spec.rb')
-rw-r--r--spec/lib/error_tracking/sentry_client_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/lib/error_tracking/sentry_client_spec.rb b/spec/lib/error_tracking/sentry_client_spec.rb
new file mode 100644
index 00000000000..9ffd756f057
--- /dev/null
+++ b/spec/lib/error_tracking/sentry_client_spec.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe ErrorTracking::SentryClient do
+ let(:sentry_url) { 'https://sentrytest.gitlab.com/api/0/projects/sentry-org/sentry-project' }
+ let(:token) { 'test-token' }
+
+ subject { described_class.new(sentry_url, token) }
+
+ 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 }
+end