From 213451064df2877d8692fc27e7d7889fcb124f68 Mon Sep 17 00:00:00 2001 From: Erik Michaels-Ober Date: Mon, 25 Feb 2013 16:05:37 -0800 Subject: [PATCH] Rename spec_helper -> helper --- spec/{spec_helper.rb => helper.rb} | 0 spec/omniauth/auth_hash_spec.rb | 2 +- spec/omniauth/builder_spec.rb | 2 +- spec/omniauth/failure_endpoint_spec.rb | 2 +- spec/omniauth/form_spec.rb | 2 +- spec/omniauth/strategies/developer_spec.rb | 2 +- spec/omniauth/strategy_spec.rb | 2 +- spec/omniauth_spec.rb | 2 +- 8 files changed, 7 insertions(+), 7 deletions(-) rename spec/{spec_helper.rb => helper.rb} (100%) diff --git a/spec/spec_helper.rb b/spec/helper.rb similarity index 100% rename from spec/spec_helper.rb rename to spec/helper.rb diff --git a/spec/omniauth/auth_hash_spec.rb b/spec/omniauth/auth_hash_spec.rb index 97ebccf..b62ad0a 100644 --- a/spec/omniauth/auth_hash_spec.rb +++ b/spec/omniauth/auth_hash_spec.rb @@ -1,4 +1,4 @@ -require 'spec_helper' +require 'helper' describe OmniAuth::AuthHash do subject{ OmniAuth::AuthHash.new } diff --git a/spec/omniauth/builder_spec.rb b/spec/omniauth/builder_spec.rb index fc31fb9..0b28445 100644 --- a/spec/omniauth/builder_spec.rb +++ b/spec/omniauth/builder_spec.rb @@ -1,4 +1,4 @@ -require File.expand_path('../../spec_helper', __FILE__) +require 'helper' describe OmniAuth::Builder do describe "#provider" do diff --git a/spec/omniauth/failure_endpoint_spec.rb b/spec/omniauth/failure_endpoint_spec.rb index 9cf0260..2e2c666 100644 --- a/spec/omniauth/failure_endpoint_spec.rb +++ b/spec/omniauth/failure_endpoint_spec.rb @@ -1,4 +1,4 @@ -require 'spec_helper' +require 'helper' describe OmniAuth::FailureEndpoint do subject{ OmniAuth::FailureEndpoint } diff --git a/spec/omniauth/form_spec.rb b/spec/omniauth/form_spec.rb index d3bf91f..e4c7776 100644 --- a/spec/omniauth/form_spec.rb +++ b/spec/omniauth/form_spec.rb @@ -1,4 +1,4 @@ -require 'spec_helper' +require 'helper' describe OmniAuth::Form do describe ".build" do diff --git a/spec/omniauth/strategies/developer_spec.rb b/spec/omniauth/strategies/developer_spec.rb index 96baa1c..1a112b9 100644 --- a/spec/omniauth/strategies/developer_spec.rb +++ b/spec/omniauth/strategies/developer_spec.rb @@ -1,4 +1,4 @@ -require 'spec_helper' +require 'helper' describe OmniAuth::Strategies::Developer do let(:app){ Rack::Builder.new do |b| diff --git a/spec/omniauth/strategy_spec.rb b/spec/omniauth/strategy_spec.rb index c4e91c3..429e2f6 100644 --- a/spec/omniauth/strategy_spec.rb +++ b/spec/omniauth/strategy_spec.rb @@ -1,4 +1,4 @@ -require 'spec_helper' +require 'helper' def make_env(path = '/auth/test', props = {}) { diff --git a/spec/omniauth_spec.rb b/spec/omniauth_spec.rb index cabb73b..99107fd 100644 --- a/spec/omniauth_spec.rb +++ b/spec/omniauth_spec.rb @@ -1,4 +1,4 @@ -require 'spec_helper' +require 'helper' describe OmniAuth do describe ".strategies" do