Changeset 24528
- Timestamp:
- 11/29/09 15:37:36 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
components/yaml/branches/1.0/test/fixtures/sfTests.yml
r19674 r24528 109 109 php: | 110 110 array(1 => 'foo', 0 => 'bar') 111 --- 112 test: Octal 113 brief: as in spec example 2.19, octal value is converted 114 yaml: | 115 foo: 0123 116 php: | 117 array('foo' => 83) 118 --- 119 test: Octal strings 120 brief: Octal notation in a string must remain a string 121 yaml: | 122 foo: "0123" 123 php: | 124 array('foo' => '0123') 125 --- 126 test: Octal strings 127 brief: Octal notation in a string must remain a string 128 yaml: | 129 foo: '0123' 130 php: | 131 array('foo' => '0123') 132 --- 133 test: Octal strings 134 brief: Octal notation in a string must remain a string 135 yaml: | 136 foo: | 137 0123 138 php: | 139 array('foo' => "0123\n") components/yaml/branches/1.0/test/sfYamlDumperTest.php
r24527 r24528 16 16 sfYaml::setSpecVersion('1.1'); 17 17 18 $t = new lime_test(14 4);18 $t = new lime_test(148); 19 19 20 20 $parser = new sfYamlParser(); components/yaml/branches/1.0/test/sfYamlParserTest.php
r24527 r24528 15 15 sfYaml::setSpecVersion('1.1'); 16 16 17 $t = new lime_test(14 4);17 $t = new lime_test(148); 18 18 19 19 $parser = new sfYamlParser();