Sha256: 6f8a7adfcc8de2c29cabd0aa93369190d32d5e48d234bd687cdae829f7877366
Contents?: true
Size: 804 Bytes
Versions: 1
Compression:
Stored size: 804 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gatling-1.0.9 | spec/image_wrangler_spec.rb |