From 69ccd279951c1b2816e6b650d2275fb39ff15b10 Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Wed, 30 Jan 2013 00:16:27 +0100 Subject: test: connect with password and fix newsleeper --- qtest.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'qtest.lua') diff --git a/qtest.lua b/qtest.lua index bc3dfe2..6bf446e 100755 --- a/qtest.lua +++ b/qtest.lua @@ -56,7 +56,12 @@ end local utils = require 'lem.utils' local postgres = require 'lem.postgres.queued' -local db = assert(postgres.connect("host=localhost dbname=mydb")) +local db = assert(postgres.connect([[ +host=localhost +user=myuser +password=mypasswd +dbname=mydb +]])) assert(db:exec( 'CREATE TABLE mytable (id integer PRIMARY KEY, name CHARACTER VARYING)')) @@ -106,7 +111,7 @@ do end utils.spawn(function() - utils.sleeper():sleep(1.0) + utils.newsleeper():sleep(1.0) assert(db:exec('DROP TABLE mytable')) end) -- cgit v1.2.1