Sha256: 1486421a05cd55f40989733b09ed749ec0a2ffb3d1916a523fbf06891d9b1e15
Contents?: true
Size: 578 Bytes
Versions: 18
Compression:
Stored size: 578 Bytes
Contents
# frozen_string_literal: true describe 'GH-981', site: true, stdio: true do before do File.write('content/foo.md', 'I am foo!') File.write('Rules', <<EOS) compile '/foo.*' do filter :erb, stuff: self write '/foo.html' end EOS end it 'creates at first' do expect { Nanoc::CLI.run(%w[compile --verbose]) }.to output(%r{create.*output/foo\.html$}).to_stdout end it 'skips the item on second try' do Nanoc::CLI.run(%w[compile]) expect { Nanoc::CLI.run(%w[compile --verbose]) }.to output(%r{skip.*output/foo\.html$}).to_stdout end end
Version data entries
18 entries across 18 versions & 1 rubygems