Added empty test for later
This commit is contained in:
parent
ca5d806f0b
commit
fe2f407b7f
11
src/test.zig
11
src/test.zig
@ -198,8 +198,7 @@ test "GRAB Relationship AdditionalData Filtered" { // FIXME: NOT OK
|
|||||||
try testParsing(db, "GRAB User [2; name, best_friend] {best_friend !IN {}}");
|
try testParsing(db, "GRAB User [2; name, best_friend] {best_friend !IN {}}");
|
||||||
}
|
}
|
||||||
|
|
||||||
test "GRAB Relationship dot" { // TODO: Make this a reality
|
test "GRAB Relationship dot" { // TODO: Make this a reality, but need to think a bit more about it
|
||||||
// DO I add this ? I'm not sure about this feature
|
|
||||||
const db = DB{ .path = "test1", .schema = "schema/test" };
|
const db = DB{ .path = "test1", .schema = "schema/test" };
|
||||||
// try testParsing(db, "GRAB User.best_friend {}");
|
// try testParsing(db, "GRAB User.best_friend {}");
|
||||||
// try testParsing(db, "GRAB User.best_friend.best_friend {}");
|
// try testParsing(db, "GRAB User.best_friend.best_friend {}");
|
||||||
@ -208,6 +207,14 @@ test "GRAB Relationship dot" { // TODO: Make this a reality
|
|||||||
try testParsing(db, "GRAB User [1] {}");
|
try testParsing(db, "GRAB User [1] {}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test "GRAB Ordering" { // TODO: Make this a reality
|
||||||
|
const db = DB{ .path = "test1", .schema = "schema/test" };
|
||||||
|
// try testParsing(db, "GRAB User {} |age|");
|
||||||
|
// try testParsing(db, "GRAB User {} |name|");
|
||||||
|
// try testParsing(db, "GRAB User {} |name, age|");
|
||||||
|
try testParsing(db, "GRAB User [1] {}");
|
||||||
|
}
|
||||||
|
|
||||||
// 3 Struct Relationship
|
// 3 Struct Relationship
|
||||||
// ===============================================================
|
// ===============================================================
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user