rails-perftest
rails-perftest copied to clipboard
Can I change the folder of test_helper.rb?
We keep all of our tests in the spec
folder. Is there a way to require test_helper.rb
from a folder other than test
?
@IamNaN are you talking about the require "test_helper"
that is part of the generated test-cases?
You could move the file to /spec/
and use require './spec/test_helper'