class SeleniumReporter::ConfigChecker

Constants

ERRORS

Public Class Methods

new() click to toggle source
# File lib/selenium-reporter/config-checker.rb, line 5
def initialize
  output_dir_check
end

Private Instance Methods

output_dir_check() click to toggle source
# File lib/selenium-reporter/config-checker.rb, line 13
def output_dir_check
  if ENV['SE_OUTPUT_DIR'].nil?
    raise ERRORS[:NoOutputDirSpecified]
  end
end