@@ -86,7 +86,7 @@ public void Reader_Is_Enabled(JsonApiQueryStringParameters parametersDisabled, b
86
86
[ InlineData ( "filter" , "any(null,'a','b')" , "Attribute 'null' does not exist on resource type 'blogs'." ) ]
87
87
[ InlineData ( "filter" , "any('a','b','c')" , "Field name expected." ) ]
88
88
[ InlineData ( "filter" , "any(title,'b','c',)" , "Value between quotes expected." ) ]
89
- [ InlineData ( "filter" , "any(title,'b' )" , ", expected." ) ]
89
+ [ InlineData ( "filter" , "any(title)" , ", expected." ) ]
90
90
[ InlineData ( "filter[posts]" , "any(author,'a','b')" , "Attribute 'author' does not exist on resource type 'blogPosts'." ) ]
91
91
[ InlineData ( "filter" , "and(" , "Filter function expected." ) ]
92
92
[ InlineData ( "filter" , "or(equals(title,'some'),equals(title,'other')" , ") expected." ) ]
@@ -146,6 +146,7 @@ public void Reader_Read_Fails(string parameterName, string parameterValue, strin
146
146
[ InlineData ( "filter" , "contains(title,'this')" , null , "contains(title,'this')" ) ]
147
147
[ InlineData ( "filter" , "startsWith(title,'this')" , null , "startsWith(title,'this')" ) ]
148
148
[ InlineData ( "filter" , "endsWith(title,'this')" , null , "endsWith(title,'this')" ) ]
149
+ [ InlineData ( "filter" , "any(title,'this')" , null , "any(title,'this')" ) ]
149
150
[ InlineData ( "filter" , "any(title,'this','that','there')" , null , "any(title,'that','there','this')" ) ]
150
151
[ InlineData ( "filter" , "and(contains(title,'sales'),contains(title,'marketing'),contains(title,'advertising'))" , null ,
151
152
"and(contains(title,'sales'),contains(title,'marketing'),contains(title,'advertising'))" ) ]
0 commit comments