Sha256: d9ea43cca37381357f9d6d75bcddbb0359ecfef9a5affbbf8a441cd71d739c38
Contents?: true
Size: 602 Bytes
Versions: 22
Compression:
Stored size: 602 Bytes
Contents
describe 'GH-813', site: true, stdio: true do before do File.write('nanoc.yaml', "enable_output_diff: true\n") File.write('content/greeting.md', 'Hallöchen!') File.write('Rules', <<EOS) compile '/**/*' do snapshot :donkey, path: '/donkey.html' filter :kramdown end EOS Nanoc::CLI.run(['compile']) end specify 'Nanoc generates diff for proper path' do File.write('content/greeting.md', 'Hellosies!') Nanoc::CLI.run(['compile']) diff = File.read('output.diff') expect(diff).to start_with("--- output/donkey.html\n+++ output/donkey.html\n") end end
Version data entries
22 entries across 22 versions & 1 rubygems
Version | Path |
---|---|
nanoc-4.4.7 | spec/nanoc/regressions/gh_813_spec.rb |
nanoc-4.4.6 | spec/nanoc/regressions/gh_813_spec.rb |