Skip to content

Commit

Permalink
Added fixture to test parsing of hash keys ending with a space and #
Browse files Browse the repository at this point in the history
  • Loading branch information
hvt authored and fabpot committed Aug 28, 2014
1 parent bb97903 commit 8ba3b28
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Symfony/Component/Yaml/Tests/Fixtures/sfComments.yml
Expand Up @@ -63,3 +63,11 @@ brief: >
yaml: 'foo#bar: baz'
php: |
array('foo#bar' => 'baz')
---
test: 'Hash key ending with a space and a #'
brief: >
'Hash key ending with a space and a #'
yaml: |
'foo #': baz
php: |
array('foo #' => 'baz')

0 comments on commit 8ba3b28

Please sign in to comment.