Автор: Nick Sagona, III (nick@popphp.org)
Пример #1
0
 public function testEncode()
 {
     $ary = array(array('Name' => 'Test1', 'Num' => 1), array('Name' => 'Test2', 'Num' => 2));
     $y = Yaml::encode($ary);
     $this->assertContains('Name: "Test1"', $y);
 }