Commit 2b4d3932 authored by Paul Slaughter's avatar Paul Slaughter

Re-add #from_query test case for anonymouse query

- https://gitlab.com/gitlab-org/gitlab/-/merge_requests/83281#note_884469872
parent 4aa45a3c
......@@ -19,6 +19,7 @@ RSpec.describe Gitlab::Graphql::KnownOperations do
describe "#from_query" do
where(:query_string, :expected) do
"query { helloWorld }" | described_class::UNKNOWN
"query fuzzyyy { helloWorld }" | described_class::UNKNOWN
"query foo { helloWorld }" | described_class::Operation.new("foo")
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment