We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 874763c commit d04ab0bCopy full SHA for d04ab0b
spec/bashly/libraries/render_mandoc_spec.rb
@@ -3,6 +3,8 @@
3
RenderContext.new source: source, target: target, show: show
4
end
5
6
+ let(:leeway) { ENV['CI'] ? 10 : 0 }
7
+
8
let(:source) { 'lib/bashly/libraries/render/mandoc' }
9
let(:target) { 'spec/tmp' }
10
let(:show) { nil }
@@ -27,6 +29,7 @@
27
29
28
30
expect(`man "#{target}/download.1" | col -bx`)
31
.to match_approval('libraries/render/mandoc/render-1-download.1')
32
+ .diff(leeway)
33
34
35
0 commit comments