From 1b69ac6ad2ee9b77636c466486e91c60ebeb524a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 7 Feb 2015 08:57:27 -0500 Subject: [PATCH] Unit Tests - The on-modify-misbehave1 test is not useful. --- test/test_hooks/on-modify-misbehave1 | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 test/test_hooks/on-modify-misbehave1 diff --git a/test/test_hooks/on-modify-misbehave1 b/test/test_hooks/on-modify-misbehave1 deleted file mode 100644 index 15ac4a2f1..000000000 --- a/test/test_hooks/on-modify-misbehave1 +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# The on-modify event is triggered separately for each task modified. This hook -# script can accept/reject the modification. Processing will continue. - -# Input: -# - line of JSON for the original task -# - line of JSON for the modified task, the diff being the modification - -# Output: -# - JSON, modified or unmodified. -# - Optional feedback/error. -echo 'FEEDBACK' - -# Status: -# - 0: JSON accepted, non-JSON is feedback. -# - non-0: JSON ignored, non-JSON is error. -exit 1