mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
0ee83437e3
git-subtree-dir: lib/influxdb-php-sdk git-subtree-mainline:15a338061dgit-subtree-split:1928d59eb9
24 lines
643 B
PHP
24 lines
643 B
PHP
<?php
|
|
namespace InfluxDB\Adapter;
|
|
|
|
class HelpersTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @dataProvider getElements
|
|
*/
|
|
public function testListToInlineValues($message, $result, $escape)
|
|
{
|
|
$this->assertEquals($result, list_to_string($message, $escape));
|
|
}
|
|
|
|
public function getElements()
|
|
{
|
|
return [
|
|
[["one" => "two"], "one=two", false],
|
|
[["one" => "two"], "one=\"two\"", true],
|
|
[["one" => "two", "three" => "four"], "one=two,three=four", false],
|
|
[["one" => "two", "three" => "four"], "one=\"two\",three=\"four\"", true],
|
|
];
|
|
}
|
|
}
|