diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-20 02:12:03 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-20 02:12:03 -0500 |
commit | 7bfb0ad102bef9810a685393490f4f9d8497b978 (patch) | |
tree | e027aaf26810e372db8b3edcf4b718c6667e2eea /tests | |
parent | f3b08f68d9fdc62c42dc2a007d92968edac724e2 (diff) | |
download | horizon-7bfb0ad102bef9810a685393490f4f9d8497b978.tar.gz horizon-7bfb0ad102bef9810a685393490f4f9d8497b978.tar.bz2 horizon-7bfb0ad102bef9810a685393490f4f9d8497b978.tar.xz horizon-7bfb0ad102bef9810a685393490f4f9d8497b978.zip |
tests: Configure Aruba inside RSpec configuration block
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spec/spec_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/spec/spec_helper.rb b/tests/spec/spec_helper.rb index bc2a7b3..47c9a0d 100644 --- a/tests/spec/spec_helper.rb +++ b/tests/spec/spec_helper.rb @@ -51,11 +51,11 @@ RSpec.configure do |config| # test failures related to randomization by passing the same `--seed` value # as the one that triggered the failure. Kernel.srand config.seed -end -Aruba.configure do |config| + Aruba.configure do |config| config.fixtures_directories = %w(fixtures) config.remove_ansi_escape_sequences = false if respond_to? :remove_ansi_escape_sequences= + end end IFILE_PATH = 'installfile' |