The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w
; use strict
; use Test::More tests => 1
; use  Template::Magic

; our ( $tm
      , $scalar_test
      , $content
      , $tmp
      , $my_hash
      )

; $my_hash = { scalar_test => 'SCALAR FROM HASH'
             }
; $tm = new Template::Magic
            lookups => $my_hash
; $scalar_test = 'SCALAR'
; $tmp = 'text from template {scalar_test} placeholder {/scalar_test},{simulated_area} simulated text {scalar_test} {/simulated_area} end text.'
; $content = $tm->output(\$tmp)
; is ( $$content
     , 'text from template SCALAR FROM HASH, end text.'
     )