diff options
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r-- | test/test_helper.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb index d78cc96..7e90cfa 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,6 +1,10 @@ require 'rubygems' require 'minitest/autorun' -LEAP_CA_ROOT = File.expand_path('../..', __FILE__) -$:.unshift File.expand_path('lib', LEAP_CA_ROOT) -require 'mocha' +BASE_DIR = File.expand_path('../..', __FILE__) +$:.unshift File.expand_path('lib', BASE_DIR) + +require 'mocha/setup' + +LEAP_CA_CONFIG = "test/config/config.yaml" +require 'leap_ca' |