Configuration from current directory
[gnucomo.git] / test / t0001.sh
diff --git a/test/t0001.sh b/test/t0001.sh
deleted file mode 100644 (file)
index 257d505..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-# First test. Create and destroy the database.
-
-cd ..
-
-if psql gnucomo_test -q <src/database/create.sql >/dev/null
-then
-   psql gnucomo_test -c 'select statuscode from status'
-   result=$?
-   psql gnucomo_test -f src/database/destroy.sql -q
-   exit $result
-else
-   echo Can not create test database
-   exit 1
-fi