Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / fixtures / drupal7 / modules / behat_test / behat_test.features.inc
diff --git a/vendor/drupal/drupal-extension/fixtures/drupal7/modules/behat_test/behat_test.features.inc b/vendor/drupal/drupal-extension/fixtures/drupal7/modules/behat_test/behat_test.features.inc
new file mode 100644 (file)
index 0000000..6145dc7
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+/**
+ * @file
+ * behat_test.features.inc
+ */
+
+/**
+ * Implements hook_node_info().
+ */
+function behat_test_node_info() {
+  $items = array(
+    'post' => array(
+      'name' => t('Post'),
+      'base' => 'node_content',
+      'description' => t('Post content type.'),
+      'has_title' => '1',
+      'title_label' => t('Title'),
+      'help' => '',
+    ),
+  );
+  drupal_alter('node_info', $items);
+  return $items;
+}