Sha256: e406b858b6dc59caa87f1f06c93d728efe261f0044637749dda90e227438de5a
Contents?: true
Size: 1.83 KB
Versions: 1
Compression:
Stored size: 1.83 KB
Contents
require 'logger' module Gatling module Configuration class << self attr_accessor :reference_image_path, :max_no_tries, :sleep_between_tries, :browser_folders attr_reader :paths def reference_image_path @reference_image_path ||= default_reference_path @browser_folders ? (reference_path_with_browser_folders) : @reference_image_path end def max_no_tries @max_no_tries ||= 5 end def sleep_between_tries @sleep_between_tries ||= 0.5 end def path(type) paths = {:reference => reference_image_path, :candidate => File.join(reference_image_path, 'candidate'), :diff => File.join(reference_image_path, 'diff'), :temp => File.join(reference_image_path, 'temp')} paths[type] end def default_reference_path begin reference_image_path = File.join(Rails.root, 'spec/reference_images') rescue reference_image_path = 'spec/reference_images' puts "Currently defaulting to #{@reference_image_path}. Overide this by setting reference_image_path=[refpath] in your configuration block" end reference_image_path end def reference_path_with_browser_folders begin reference_images_path = File.join(@reference_image_path, browser) rescue reference_images_path = @reference_image_path end reference_images_path end def browser begin browser = Capybara.page.driver.browser.browser rescue browser = Selenium.page.driver.browser.browser rescue raise "Currently custom folders are only supported by Capybara. ENV variables are coming." return nil end browser.to_s end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gatling-1.1.3 | lib/gatling/configuration.rb |