Sha256: 2fd6cb8f6d3da02759ae017ec256c1515f3b42d7e958a5e39fe0a21da03e945c
Contents?: true
Size: 627 Bytes
Versions: 18
Compression:
Stored size: 627 Bytes
Contents
describe 'GH-891', site: true, stdio: true do before do File.write('layouts/foo.erb', 'giraffes? <%= yield %>') File.write('Rules', <<EOS) preprocess do items.create('yes!', {}, '/hello.html') end compile '/**/*' do layout '/foo.*' write item.identifier.without_ext + '.html' end layout '/foo.*', :erb EOS end example do Nanoc::CLI.run(%w(compile)) expect(File.read('output/hello.html')).to include('giraffes?') File.write('layouts/foo.erb', 'donkeys? <%= yield %>') Nanoc::CLI.run(%w(compile)) expect(File.read('output/hello.html')).to include('donkeys?') end end
Version data entries
18 entries across 18 versions & 1 rubygems