コード例 #1
0
ファイル: test_component.py プロジェクト: ZeitOnline/batou
def test_cmd_expands_jinja(mockroot):
    c = Component()
    c.foo = 'asdf'
    c.prepare(mockroot)
    assert ('asdf\n', '') == c.cmd('echo "{{component.foo}}"')
コード例 #2
0
def test_cmd_expands_jinja(mockroot):
    c = Component()
    c.foo = "asdf"
    c.prepare(mockroot)
    assert ("asdf\n", "") == c.cmd('echo "{{component.foo}}"')