1--TEST--
2Yaml YtsBasicTests - Deeply Nested Sequences
3--DESCRIPTION--
4Sequences can be nested even deeper, with each
5level of indentation representing a level of
6depth.
7--CREDITS--
8Bryan Davis bd808@bd808.com
9# yaml.kwiki.org import/conversion
10--SKIPIF--
11<?php if(!extension_loaded('yaml')) die('skip yaml n/a'); ?>
12--FILE--
13<?php
14  var_dump(yaml_parse('-
15 -
16  - uno
17  - dos
18'));
19?>
20--EXPECT--
21array(1) {
22  [0]=>
23  array(1) {
24    [0]=>
25    array(2) {
26      [0]=>
27      string(3) "uno"
28      [1]=>
29      string(3) "dos"
30    }
31  }
32}
33