Skip to content

Commit

Permalink
move load_path to globalize/
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Fuchs committed Sep 11, 2008
1 parent 2fb99d0 commit 3e3e5c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions spec/i18n/load_path_spec.rb → spec/load_path_spec.rb
@@ -1,11 +1,11 @@
require File.dirname(__FILE__) + '/../spec/helper.rb'
require 'globalize/i18n/load_path'
require File.dirname(__FILE__) + '/spec/helper.rb'
require 'globalize/load_path'

I18n.send :include, Globalize::LoadPath::I18n

describe Globalize::LoadPath do
before :each do
@locale_dir = "#{File.dirname(__FILE__)}/../spec/fixtures/locale"
@locale_dir = "#{File.dirname(__FILE__)}/spec/fixtures/locale"
@load_path = I18n.load_path
@load_path << @locale_dir if @load_path.empty?
end
Expand Down Expand Up @@ -54,7 +54,7 @@

describe I18n, "#load_locales" do
before :each do
@locale_dir = "#{File.dirname(__FILE__)}/../spec/fixtures/locale"
@locale_dir = "#{File.dirname(__FILE__)}/spec/fixtures/locale"
@load_path = I18n.load_path
@load_path << @locale_dir if @load_path.empty?
end
Expand Down

0 comments on commit 3e3e5c7

Please sign in to comment.