Sha256: 30aa5937e00f6dd690376caa319f7d9067eda397808d3de6f0992bddf2b412eb
Contents?: true
Size: 633 Bytes
Versions: 18
Compression:
Stored size: 633 Bytes
Contents
# frozen_string_literal: true 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
18 entries across 18 versions & 1 rubygems