WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
yaml
/
v3.1.2
/
vendor
/
mustangostang
/
spyc
/
tests
/
Name
Action
..
DumpTest.php
Edit
IndentTest.php
Edit
LoadTest.php
Edit
ParseTest.php
Edit
RoundTripTest.php
Edit
comments.yaml
Edit
failing1.yaml
Edit
indent_1.yaml
Edit
quotes.yaml
Edit
Editing: LoadTest.php
<?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); } } }