2019-06-07 13:13:26 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe 'getting notes for an issue' do
|
2019-06-07 13:13:26 -04:00
|
|
|
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
|