view tests/servings/test_debug_info.yaml @ 779:982de61e7da9

tests: Fix some CLI tests. Add auto-stripping of newlines in the CLI output for tests that use the simple YAML string value for the expected output. Also, fix `showconfig` test to expect a root URL with a trailing slash.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 16 Jul 2016 15:04:36 +0200
parents e7fb848fd55d
children 45ad976712ec
line wrap: on
line source

---
url: /foo
in: 
    pages/foo.md: |
        BLAH
        {{piecrust.debug_info}}
out: BLAH
---
url: /foo?!debug
in:
    pages/foo.md: |
        BLAH
        {{piecrust.debug_info}}
out_contains: |
    BLAH
    <div id="piecrust-debug-window"
---
url: /foo
in:
    pages/foo.md: BLAH {{pcurl('bar')}}
out: BLAH /bar.html
---
url: /foo?!debug
in:
    pages/foo.md: BLAH {{pcurl('bar')}}
out: BLAH /bar.html?!debug
---
url: /foo
config:
    site:
        pretty_urls: true
in:
    pages/foo.md: BLAH {{pcurl('bar')}}
out: BLAH /bar
---
url: /foo?!debug
config:
    site:
        pretty_urls: true
in:
    pages/foo.md: BLAH {{pcurl('bar')}}
out: BLAH /bar?!debug