This repository has been archived on 2024-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
mocks-drupal-variables/tests/VariablesTest.php

25 lines
358 B
PHP
Raw Normal View History

2016-08-05 20:14:59 -07:00
<?php
/**
* Created by PhpStorm.
* User: Eric
* Date: 08/05/2016
* Time: 5:47 PM
*/
namespace Sikofitt\Tests\Mocks\Drupal;
class VariablesTest extends \PHPUnit_Framework_TestCase
{
public function setUp()
{
}
public function testVariableGet()
{
variable_set('test', 'variable');
$this->assertTrue(true);
}
}