view tests/bakes/test_variant.yaml @ 668:a1b69b320217

cm: Ignore `py.test` cache.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 03 Mar 2016 20:24:42 -0800
parents 81d9c3a3a0b5
children 894d286b348f
line wrap: on
line source

---
config:
    what: not good
    variants:
        test:
            what: awesome
config_variant: test
in:
    pages/_index.md: 'This is {{what}}.'
out:
    index.html: 'This is awesome.'
---
config:
    what: not good
config_variant: test
in:
    pages/_index.md: 'This is {{what}}.'
    configs/test.yml: 'what: awesome'
out:
    index.html: 'This is awesome.'
---
config:
    what: not good
config_values:
    what: awesome
in:
    pages/_index.md: 'This is {{what}}.'
out:
    index.html: 'This is awesome.'