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 {
119
119
)
120
120
}
121
121
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
+ // }
146
146
147
147
func testInterfaceIntoOverlappingUnion( ) throws {
148
148
try assertValid (
You can’t perform that action at this time.
0 commit comments