Sha256: 896b1ec0753b50ec0fc7a3fd46697807c799fecb93d931d7dd8c4e4cca309ee7
Contents?: true
Size: 1.9 KB
Versions: 3
Compression:
Stored size: 1.9 KB
Contents
module WatirSplash # class for common functionality class Util class << self # returns unique file path for use in the examples # # all file names generated with this method will # be shown on the report upon test failure. def file_path(file_name, description=nil) WatirSplash::Util.formatter.file_path(file_name, description) end # returns native file path # e.g. on Windows: # file_native_path("c:/blah/blah2/file.txt") => c:\\blah\\blah2\\file.txt def file_native_path(file_path) File::ALT_SEPARATOR ? file_path.gsub(File::SEPARATOR, File::ALT_SEPARATOR) : file_path end # configure RSpec to use documentation and WatirSplash::HtmlFormatter formatters def configure_rspec_formatters config = RSpec.configuration config.color_enabled = true results_path = ENV["WATIRSPLASH_RESULTS_PATH"] || "results/index.html" @@html_formatter = WatirSplash::HtmlFormatter.new(results_path) config.formatters.unshift(@@html_formatter) config.add_formatter(:documentation) end def formatter @@html_formatter end @@framework = nil def framework= framework framework = framework.to_sym @@framework = framework == :default ? default_framework : framework.to_sym end def framework @@framework end def load_framework self.framework = ENV["WATIRSPLASH_FRAMEWORK"] || framework || default_framework require "watirsplash/frameworks/#{framework}" end private def default_framework case RUBY_PLATFORM when /mswin|msys|mingw32/ :watir when /darwin|linux/ :firewatir else raise "Unsupported platform: #{RUBY_PLATFORM}" end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
watirsplash-2.0.1.rc1 | lib/watirsplash/util.rb |
watirsplash-2.0.0 | lib/watirsplash/util.rb |
watirsplash-2.0.0.rc2 | lib/watirsplash/util.rb |