Skip to content

Commit

Permalink
simpler require statements
Browse files Browse the repository at this point in the history
  • Loading branch information
binarylogic committed Mar 9, 2011
1 parent ce95234 commit e0a894e
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion spec/searchlogic/active_record/association_proxy_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe "Searchlogic::ActiveRecord::AssociationProxy" do
it "should call location conditions" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searchlogic/active_record/consistency_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::ActiveRecord::Consistency do
it "should merge joins with consistent conditions" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searchlogic/core_ext/object_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::CoreExt::Object do
it "should accept and pass the argument to the searchlogic_options" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searchlogic/core_ext/proc_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::CoreExt::Proc do
it "should have a searchlogic_options accessor" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searchlogic/named_scopes/alias_scope_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::NamedScopes::AliasScope do
before(:each) do
Expand Down
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::NamedScopes::AssociationConditions do
it "should create a named scope" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searchlogic/named_scopes/association_ordering_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::NamedScopes::Ordering do
it "should allow ascending" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searchlogic/named_scopes/column_conditions_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::NamedScopes::ColumnConditions do
it "should be dynamically created and then cached" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searchlogic/named_scopes/or_conditions_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::NamedScopes::OrConditions do
it "should define a scope by the exact same name as requested by the code" do
Expand Down
2 changes: 1 addition & 1 deletion spec/searchlogic/named_scopes/ordering_spec.rb
@@ -1,4 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
require 'spec_helper'

describe Searchlogic::NamedScopes::Ordering do
it "should have ascending" do
Expand Down

0 comments on commit e0a894e

Please sign in to comment.