/**
  * Method to test showDatabases().
  *
  * @return void
  *
  * @covers Windwalker\Query\Mysql\MysqlQueryBuilder::listDatabases
  */
 public function testShowDatabases()
 {
     $expected = "SHOW DATABASES WHERE a = b";
     $actual = MysqlQueryBuilder::listDatabases('a = b');
     $this->assertEquals($this->format($expected), $this->format($actual));
 }