view tests/servings/test_debug_info.yaml @ 498:35d4c172e5a6

less: Fix issues with the map file on Windows. See the comment in the code for more information. Also, only wrap the opening of the map file in a try/except clause, since we want to catch the situation where the map file is missing only.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 23 Jul 2015 23:02:07 -0700
parents 879b6b5647a8
children e7fb848fd55d
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-info"
---
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