2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Sentry::Client 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
|
|
|
|
2020-03-09 13:42:32 +05:30
|
|
|
subject { Sentry::Client.new(sentry_url, token) }
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2020-03-09 13:42:32 +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
|