update core to 7.36
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
name = "Drupal code registry test"
|
||||
description = "Support module for testing the code registry."
|
||||
files[] = drupal_autoload_test_interface.inc
|
||||
files[] = drupal_autoload_test_class.inc
|
||||
package = Testing
|
||||
version = VERSION
|
||||
core = 7.x
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2015-04-02
|
||||
version = "7.36"
|
||||
project = "drupal"
|
||||
datestamp = "1427943826"
|
||||
|
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Test module to check code registry.
|
||||
*/
|
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Test classes for code registry testing.
|
||||
*/
|
||||
|
||||
/**
|
||||
* This class is empty because we only care if Drupal can find it.
|
||||
*/
|
||||
class DrupalAutoloadTestClass implements DrupalAutoloadTestInterface {}
|
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Test interfaces for code registry testing.
|
||||
*/
|
||||
|
||||
/**
|
||||
* This interface is empty because we only care if Drupal can find it.
|
||||
*/
|
||||
interface DrupalAutoloadTestInterface {}
|
Reference in New Issue
Block a user