Skip to content

Commit 1adab71

Browse files
abhilal007paul-m
abhilal007
authored andcommitted
Issue #2897096 by Kifah Meeran, Mile23, AbhishekLal, navneet0693: Capitalize all module names
1 parent ebf3634 commit 1adab71

File tree

20 files changed

+24
-22
lines changed

20 files changed

+24
-22
lines changed

cache_example/cache_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Cache example
1+
name: Cache Example
22
description: Demonstrates how to use Cache API.
33
package: Example modules
44
core: 8.x

config_entity_example/config_entity_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Config entity example'
1+
name: 'Config Entity Example'
22
type: module
33
description: 'Demonstrates how to create a config entity type.'
44
package: Example modules

cron_example/cron_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Cron example
1+
name: Cron Example
22
type: module
33
description: 'Demonstrates hook_cron() and related features'
44
package: Example modules

dbtng_example/dbtng_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: DBTNG example
1+
name: DBTNG Example
22
type: module
33
description: 'Demonstrates how to use the database API: DBTNG.'
44
package: Example modules

events_example/events_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Events example
1+
name: Events Example
22
type: module
33
description: Provides an example of subscribing to and dispatching events.
44
package: Example modules

file_example/file_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: File example
1+
name: File Example
22
type: module
33
description: Demonstrates using the Drupal File API and stream wrappers.
44
package: Example modules

hooks_example/hooks_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Hooks example
1+
name: Hooks Example
22
type: module
33
description: Provides examples of implementing, defining, and invoking hooks.
44
package: Example modules

page_example/page_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Page example
1+
name: Page Example
22
type: module
33
description: 'Demonstrates how to display a page at a given URL.'
44
package: Example modules

phpunit_example/phpunit_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PHPUnit example
1+
name: PHPUnit Example
22
type: module
33
description: Demontrates how to use PHPUnit-based tests.
44
package: Example modules

plugin_type_example/plugin_type_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Plugin type example
1+
name: Plugin Type Example
22
type: module
33
description: Provides an example of defining a plugin type.
44
package: Example modules

queue_example/queue_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Queue example
1+
name: Queue Example
22
type: module
33
description: Examples of using the Drupal Queue API.
44
package: Example modules

simpletest_example/simpletest_example.module

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use Drupal\Core\Session\AccountInterface;
1010
use Drupal\node\NodeInterface;
1111

1212
/**
13-
* @defgroup simpletest_example Example: Simpletest
13+
* @defgroup simpletest_example Example: SimpleTest
1414
* @ingroup examples
1515
* @{
1616
*

src/Tests/ExamplesTest.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ public function testExamples() {
4848
'Found the Examples toolbar tray.'
4949
);
5050
// Assert that PHPUnit link does not appears in the tray.
51-
$this->assertNoLink('PHPUnit example');
51+
$phpunit_link = 'PHPUnit Example';
52+
$this->assertNoLink($phpunit_link);
5253
$this->assertNoRaw('<li class="phpunit-example">');
5354

5455
// Install phpunit_example and see if it appears in the toolbar. We use
@@ -59,7 +60,7 @@ public function testExamples() {
5960

6061
// Verify that PHPUnit appears in the tray.
6162
$this->drupalGet('');
62-
$this->assertLink('PHPUnit example');
63+
$this->assertLink($phpunit_link);
6364
// Assert that the PHPUnit tray item is present.
6465
$this->assertEqual(
6566
\count($this->xpath('//nav/div/div/nav/ul/li[@class="phpunit-example"]')),

stream_wrapper_example/stream_wrapper_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Stream Wrapper example
1+
name: Stream Wrapper Example
22
type: module
33
description: Example of implementing Stream Wrappers in Drupal.
44
package: Example modules

tabledrag_example/tabledrag_example.module

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
/**
9-
* @defgroup tabledrag_example Example: Draggable table forms
9+
* @defgroup tabledrag_example Example: Draggable Table Forms
1010
* @ingroup examples
1111
* @{
1212
*/

tablesort_example/tablesort_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Table Sort example
1+
name: Table Sort Example
22
type: module
33
description: 'Demonstrates how to create sortable output in a table.'
44
package: Example modules

testing_example/testing_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Testing example
1+
name: Testing Example
22
type: module
33
description: Demonstrates Drupal core testing frameworks
44
package: Example modules

tests/modules/examples_description_test/examples_description_test.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Sample description template test'
1+
name: 'Sample Description Template Test'
22
type: module
33
description: 'Support module for testing the DescriptionTemplateTrait.'
44
package: Testing

tests/src/Functional/ExamplesTest.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ public function testExamples() {
4949
'Found the Examples toolbar tray.'
5050
);
5151
// Assert that PHPUnit link does not appears in the tray.
52-
$assert->linkNotExists('PHPUnit example');
52+
$phpunit_link = 'PHPUnit Example';
53+
$assert->linkNotExists($phpunit_link);
5354
$assert->pageTextNotContains('<li class="phpunit-example">');
5455

5556
// Install phpunit_example and see if it appears in the toolbar. We use
@@ -60,7 +61,7 @@ public function testExamples() {
6061

6162
// Verify that PHPUnit appears in the tray.
6263
$this->drupalGet('');
63-
$assert->linkExists('PHPUnit example');
64+
$assert->linkExists($phpunit_link);
6465
// Assert that the PHPUnit tray item is present.
6566
$this->assertEquals(
6667
1,

tour_example/tour_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Tour example'
1+
name: 'Tour Example'
22
type: module
33
description: 'Demonstrates how to create a tour in Drupal 8.'
44
package: Example modules

0 commit comments

Comments
 (0)