ref: 0e09b71c5ef598db9e6188614e43844621024b1e
converter/vendor/mustangostang/spyc/tests/LoadTest.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?php require_once ("../Spyc.php"); class LoadTest extends PHPUnit_Framework_TestCase { public function testQuotes() { $test_values = array( "adjacent '''' \"\"\"\" quotes.", "adjacent '''' quotes.", "adjacent \"\"\"\" quotes.", ); foreach($test_values as $value) { $yaml = array($value); $dump = Spyc::YAMLDump ($yaml); $yaml_loaded = Spyc::YAMLLoad ($dump); $this->assertEquals ($yaml, $yaml_loaded); } } } |