Added empty test for later

This commit is contained in:
Adrien Bouvais 2025-02-12 16:42:14 +01:00
parent ca5d806f0b
commit fe2f407b7f

View File

@ -198,8 +198,7 @@ test "GRAB Relationship AdditionalData Filtered" { // FIXME: NOT OK
try testParsing(db, "GRAB User [2; name, best_friend] {best_friend !IN {}}");
}
test "GRAB Relationship dot" { // TODO: Make this a reality
// DO I add this ? I'm not sure about this feature
test "GRAB Relationship dot" { // TODO: Make this a reality, but need to think a bit more about it
const db = DB{ .path = "test1", .schema = "schema/test" };
// try testParsing(db, "GRAB User.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] {}");
}
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
// ===============================================================