You are here

function file_test_stream_wrappers in SimpleTest 7

Implement hook_stream_wrappers().

File

tests/file_test.module, line 33
Helper module for the file tests.

Code

function file_test_stream_wrappers() {
  return array(
    'dummy' => array(
      'name' => t('Dummy files'),
      'class' => 'DrupalDummyStreamWrapper',
      'description' => t('Dummy wrapper for simpletest.'),
    ),
  );
}