2019-01-09 16:04:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe Sentry::Client do
|
2019-01-09 16:04:27 -05:00
|
|
|
let(:sentry_url) { 'https://sentrytest.gitlab.com/api/0/projects/sentry-org/sentry-project' }
|
|
|
|
let(:token) { 'test-token' }
|
2019-12-02 07:06:45 -05:00
|
|
|
|
2020-01-09 04:07:51 -05:00
|
|
|
subject { Sentry::Client.new(sentry_url, token) }
|
2019-12-02 07:06:45 -05:00
|
|
|
|
2020-01-09 04:07:51 -05:00
|
|
|
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 }
|
2020-01-16 13:08:46 -05:00
|
|
|
it { is_expected.to respond_to :repos }
|
|
|
|
it { is_expected.to respond_to :create_issue_link }
|
2019-01-09 16:04:27 -05:00
|
|
|
end
|