function testIfResourceIsNotAsarConfigImportConfigCreatesConfig()
 {
     $resource = $this->getMock('Asar\\Resource\\ResourceInterface');
     $conf = new Config(array('foo' => 'bar'));
     $templater = new Templater($resource, $this->renderer);
     $templater->importConfig($conf);
     $this->assertEquals('bar', $templater->getConfig('foo'));
 }