Sha256: dd3c3246cad4034d32bf5b04e292d2ba24dda5cb949055b452e751183470a8b2
Contents?: true
Size: 805 Bytes
Versions: 2
Compression:
Stored size: 805 Bytes
Contents
require 'spec_helper' describe Gatling::ImageWrangler do class Point attr_accessor :x, :y end class Size attr_accessor :width, :height end it 'should get the position of the css element' do #Overiding the stupid public method :y of YAML module location = Point.new location.x = 1 location.y = 2 size = Size.new size.width = 100 size.height = 200 mock_element = mock mock_element.stub(:native).and_return(mock_element) mock_element.stub(:location).and_return(location) mock_element.stub(:size).and_return(size) position = Gatling::ImageWrangler.get_element_position(mock_element) position[:x].should eql(1) position[:y].should eql(2) position[:width].should eql(100) position[:height].should eql(200) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gatling-1.0.8 | spec/image_wrangler_spec.rb |
gatling-1.0.7 | spec/image_wrangler_spec.rb |