Sha256: 483e643dba513fb173c7911cebf46e10b92dfc3e67b893505eaf3e251196af00
Contents?: true
Size: 465 Bytes
Versions: 18
Compression:
Stored size: 465 Bytes
Contents
# frozen_string_literal: true describe 'GH-1082', site: true, stdio: true do before do File.write('content/a.erb', '<%= @items["/b.*"].binary? %>') File.write('content/b.erb', 'stuff') File.write('Rules', <<EOS) compile '/*' do filter :erb write item.identifier.without_ext + '.txt' end EOS end it 'requires /b to be compiled first' do Nanoc::CLI.run(%w[compile]) expect(File.read('output/a.txt')).to eql('false') end end
Version data entries
18 entries across 18 versions & 1 rubygems