- Patch #986018 by fago: remove ununsed test files.

merge-requests/26/head
Dries Buytaert 2010-12-02 14:23:17 +00:00
parent 1b8590856f
commit 35caf24c35
2 changed files with 0 additions and 26 deletions

View File

@ -1,8 +0,0 @@
; $Id$
name = "Node module presave tests"
description = "Support module for hook_node_presave testing."
package = Testing
version = VERSION
core = 7.x
files[] = node_presave_test.module
hidden = TRUE

View File

@ -1,18 +0,0 @@
<?php
// $Id$
/**
* @file
* Dummy module implementing node related hooks to test API interaction with
* the Node module.
*/
/**
* Implements hook_node_presave().
*/
function node_presave_test_node_presave($node) {
if ($node->title == 'testing_node_presave') {
$node->created = 280299600; // Sun, 19 Nov 1978 05:00:00 GMT
$node->changed = 979534800; // Drupal 1.0 release.
}
}