Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / src / Tests / MetatagJsonOutputTest.php
1 <?php
2 // @todo Write this
3
4 namespace Drupal\metatag\Tests;
5
6 use Drupal\simpletest\WebTestBase;
7
8 /**
9  * Ensures that meta tag values can be output using JSON.
10  *
11  * @group metatag
12  */
13 class MetatagJsonOutputTest extends WebTestBase {
14
15   /**
16    * Modules to enable.
17    *
18    * @var array
19    */
20   public static $modules = [
21     'node',
22     'metatag',
23   ];
24
25   /**
26    * @todo
27    */
28   public function testJson() {
29   }
30
31 }