From 65643e065e1c113ecb684dcc9d4e1dbab2a9b11b Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Sun, 28 Jul 2013 18:34:59 +0000 Subject: [PATCH] Fix fixtures path in rspec fixtures helpers --- spec/support/fixtures_helpers.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/support/fixtures_helpers.rb b/spec/support/fixtures_helpers.rb index 0d52c01..d8bfe84 100644 --- a/spec/support/fixtures_helpers.rb +++ b/spec/support/fixtures_helpers.rb @@ -1,7 +1,7 @@ module FixturesHelpers - FIXTURE_PATH = File.join(File.dirname(__FILE__), '..', 'fixtures') + FIXTURES_PATH = 'spec/fixtures' def fixture_path_for(path) - File.join(FIXTURE_PATH, path) + File.join(FIXTURES_PATH, path) end end