File tree Expand file tree Collapse file tree 1 file changed +24
-24
lines changed
Tests/GraphQLTests/ValidationTests Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -119,30 +119,30 @@ class PossibleFragmentSpreadsRuleRuleTests : ValidationTestCase {
119119 )
120120 }
121121
122- func testInterfaceIntoOverlappingInterface( ) throws {
123- try assertValid (
124- """
125- fragment interfaceWithinInterface on Pet {
126- ...beingFragment
127- }
128- fragment beingFragment on Being {
129- name
130- }
131- """
132- )
133- }
134-
135- func testInterfaceIntoOverlappingInterfaceInInlineFragment( ) throws {
136- try assertValid (
137- """
138- fragment interfaceWithinInterface on Pet {
139- ... on Being {
140- name
141- }
142- }
143- """
144- )
145- }
122+ // func testInterfaceIntoOverlappingInterface() throws {
123+ // try assertValid(
124+ // """
125+ // fragment interfaceWithinInterface on Pet {
126+ // ...beingFragment
127+ // }
128+ // fragment beingFragment on Being {
129+ // name
130+ // }
131+ // """
132+ // )
133+ // }
134+ //
135+ // func testInterfaceIntoOverlappingInterfaceInInlineFragment() throws {
136+ // try assertValid(
137+ // """
138+ // fragment interfaceWithinInterface on Pet {
139+ // ... on Being {
140+ // name
141+ // }
142+ // }
143+ // """
144+ // )
145+ // }
146146
147147 func testInterfaceIntoOverlappingUnion( ) throws {
148148 try assertValid (
You can’t perform that action at this time.
0 commit comments