From 45d84d31da681c4ea512dc29e341cb8dddf3a544 Mon Sep 17 00:00:00 2001 From: Yorick Peterse Date: Sun, 22 Mar 2015 22:50:03 +0100 Subject: [PATCH] Renamed rspec helper files --- spec/spec_helper.rb | 4 ++-- spec/support/{evaluation.rb => evaluation_helpers.rb} | 0 spec/support/{parsing.rb => parsing_helpers.rb} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename spec/support/{evaluation.rb => evaluation_helpers.rb} (100%) rename spec/support/{parsing.rb => parsing_helpers.rb} (100%) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 8af4f02..0815113 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -6,8 +6,8 @@ if ENV['COVERAGE'] end require_relative '../lib/oga' -require_relative 'support/parsing' -require_relative 'support/evaluation' +require_relative 'support/parsing_helpers' +require_relative 'support/evaluation_helpers' RSpec.configure do |config| config.color = true diff --git a/spec/support/evaluation.rb b/spec/support/evaluation_helpers.rb similarity index 100% rename from spec/support/evaluation.rb rename to spec/support/evaluation_helpers.rb diff --git a/spec/support/parsing.rb b/spec/support/parsing_helpers.rb similarity index 100% rename from spec/support/parsing.rb rename to spec/support/parsing_helpers.rb