some file cleanup
diff --git a/scripts/addNewDocument.sh b/scripts/addNewDocument.sh
deleted file mode 100755
index 4ae9f4e..0000000
--- a/scripts/addNewDocument.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-# Add a new document to the test Cloudant database.
-
-DBUSER="cusinatest"
-DBPASS="hal4you!"
-DBNAME="foo"
-
-curl -v -X POST -H 'Content-Type: application/json' \
-	-u "$DBUSER:$DBPASS" \
-        -d "{
-	  \"message\": \"This is a test document.\",
-	  \"date\": \"$(date)\"
-        }" \
-        "https://$DBUSER.cloudant.com/$DBNAME/"
-
-
diff --git a/scripts/addTestTriggers.sh b/scripts/addTestTriggers.sh
deleted file mode 100755
index 2af2b1c..0000000
--- a/scripts/addTestTriggers.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-# Register test cloudant triggers.
-
-# The service location (can be specified as command line parameter.)
-SERVICEURL="http://${CLOUDANTTRIGGER_HOST:-"localhost"}:4001" # default
-[ $# -eq 1 ] && SERVICEURL="$1" # override in command line arg
-
-# Delete all registry entries.
-#curl -X DELETE "$SERVICEURL/cloudanttriggers"; echo
-
-curl -X PUT -H 'Content-Type: application/json' \
-        -d '{
-          "accounturl": "https://cusinatest.cloudant.com",
-          "dbname": "foo",
-          "user": "cusinatest",
-          "pass": "hal4you!",
-	      "callback": { "action": {"name":"HELLOCLOUDANT"} }
-        }' \
-        "$SERVICEURL/cloudanttriggers/foo_db"; echo