Change the description string
This commit is contained in:
parent
c983048346
commit
ea2f5a4ae8
|
@ -1,3 +1,3 @@
|
||||||
name = {{ name }}
|
name = {{ name }}
|
||||||
description = The description for {{ name }}.
|
description = {{ name }} module.
|
||||||
core = 7.x
|
core = 7.x
|
||||||
|
|
|
@ -69,7 +69,7 @@ final class GenerateDrupal7ModuleCommandTest extends TestCase
|
||||||
$contents = file_get_contents('test_module/test_module.info');
|
$contents = file_get_contents('test_module/test_module.info');
|
||||||
|
|
||||||
$this->assertStringContainsString('name = Test Module', $contents);
|
$this->assertStringContainsString('name = Test Module', $contents);
|
||||||
$this->assertStringContainsString('description = The description for Test Module.', $contents);
|
$this->assertStringContainsString('description = Test Module module.', $contents);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @test */
|
/** @test */
|
||||||
|
|
Loading…
Reference in a new issue