Sha256: 84ce51a51099684a131e7e3bc49b9e329f5ff780909e5510e8c4062036e50adb
Contents?: true
Size: 470 Bytes
Versions: 18
Compression:
Stored size: 470 Bytes
Contents
# frozen_string_literal: true describe 'GH-815', site: true, stdio: true do before do File.write('nanoc.yaml', "animal: \"donkey\"\n") File.write('content/foo.md', '<%= @config.key?(:animal) %>') File.write('Rules', <<EOS) compile '/**/*' do filter :erb write item.identifier.without_ext + '.txt' end EOS end it 'handles #key? properly' do Nanoc::CLI.run(['compile']) expect(File.read('output/foo.txt')).to eql('true') end end
Version data entries
18 entries across 18 versions & 1 rubygems