2019-09-04 21:01:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe 'getting notes for an issue' do
|
2019-09-04 21:01:54 +05:30
|
|
|
include GraphqlHelpers
|
|
|
|
|
|
|
|
let(:noteable) { create(:issue) }
|
|
|
|
let(:noteable_data) { graphql_data['project']['issue'] }
|
|
|
|
|
|
|
|
def noteable_query(noteable_fields)
|
|
|
|
<<~QRY
|
|
|
|
{
|
|
|
|
project(fullPath: "#{noteable.project.full_path}") {
|
|
|
|
issue(iid: "#{noteable.iid}") {
|
|
|
|
#{noteable_fields}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QRY
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'exposing regular notes on a noteable in GraphQL'
|
|
|
|
end
|