Sha256: fd0fe76aa358d65c00cda9a4ca94280ee1004c1d24cbe914c0fa1598a1ba72b5
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
require 'rubygems' require 'capybara' require 'capybara/dsl' require 'capybara/rspec' require 'gatling' require 'gatling/matchers/look_like_matcher' require 'fileutils' require 'pry' #todo: spec folders clean up method RSpec.configure do |config| config.color_enabled = true config.formatter = 'documentation' end Capybara.app_host = "file://#{File.expand_path(File.dirname(__FILE__))}/support/assets" Capybara.default_driver = :selenium Capybara.run_server = false def config_clean_up Gatling::Configuration.reference_image_path = nil Gatling::Configuration.browser_folders = false end def remove_refs(dir) Dir.glob("#{dir}/**/*.png").each {|image| FileUtils.rm image} end def element_for_spec(css = '#black') visit('/fruit_app.html') @element = page.find(:css, css) end def spec_support_root File.join(File.dirname(__FILE__), 'support') end def create_images_for_web_page asset_reference_path = File.join(spec_support_root, 'assets') create_square_image(asset_reference_path, 'black') create_square_image(asset_reference_path, 'red') end def create_square_image(path, color) # We make the images, rather then check them in because otherwise the comparison tests # become very flakey depending on the graphics set up on the computer running them FileUtils::mkdir_p(path) reference_file = Magick::Image.new(100,100) { self.background_color = 'white' } square = Magick::Draw.new square.fill_opacity(100) square.fill_color(color) square.rectangle(10,10, 90,90) square.draw(reference_file) reference_file.write(File.join(path, "#{color}.png")) reference_file end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gatling-1.1.2 | spec/spec_helper.rb |