Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
The error:
in `require': cannot load such file -- C:/RailsInstaller/tickets/test/unit./test_helper (LoadError)
The code is:
require File.dirname(__FILE__) + '/../test_helper' class TicketTest < ActiveSupport::TestCase # ... # ... # ... end
require 'test_helper'
You have an unwanted dot in unit., replace your require with:
unit.
require File.expand_path("../../test_helper", __FILE__) # Or maybe require File.expand_path("../test_helper", __FILE__)
Add a comment
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
require 'test_helper'- if your test file is properly located, this should find your test_helper file.