diff options
author | Martin Ashby <martin@ashbysoft.com> | 2024-05-26 14:58:19 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2024-05-26 14:58:19 +0100 |
commit | 8efa8343dc942378694c251dc0afdf0d849bc9c1 (patch) | |
tree | 7e25fbad96fa4f972a1c125f42171535f0a08406 /src/main.zig | |
parent | bf5dfce3b5e49259ef7b11dea2ea364347d459d6 (diff) | |
download | pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.gz pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.bz2 pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.xz pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.zip |
Plus an extremely basic test
Diffstat (limited to 'src/main.zig')
-rw-r--r-- | src/main.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig index df6b2c9..ffb6765 100644 --- a/src/main.zig +++ b/src/main.zig @@ -150,3 +150,7 @@ pub fn addZ(comptime length: usize, value: [length]u8) [length:0]u8 { return terminated_value; } +test "connect" { + var db = try Db.init("postgresql://localhost/comments"); + db.deinit(); +} |