ref: f8d1e22b93b6149c6b74ebf8f22055135398c85d
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); } } } |