1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Antonio Terceiro <terceiro@debian.org>
Date: Tue, 10 Jan 2017 18:17:08 -0200
Subject: spec: avoid writing to file shipped with upstream source
---
spec/spec_helper.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: yard/spec/spec_helper.rb
===================================================================
--- yard.orig/spec/spec_helper.rb
+++ yard/spec/spec_helper.rb
@@ -170,7 +170,7 @@ RSpec.configure do |config|
# Allows RSpec to persist some state between runs in order to support
# the `--only-failures` and `--next-failure` CLI options. We recommend
# you configure your source control system to ignore this file.
- config.example_status_persistence_file_path = "spec/examples.txt"
+ config.example_status_persistence_file_path = "debian/examples.txt"
# Limits the available syntax to the non-monkey patched syntax that is
# recommended. For more details, see:
|