Sha256: f6d6b83e9887e53319352ce27f6251f6bc3424e800c8da40bdc03a4a39c6f71b

Contents?: true

Size: 316 Bytes

Versions: 4

Compression:

Stored size: 316 Bytes

Contents

# frozen_string_literal: true
class Shoes
  module Mock
    class Shape
      include Shoes::Mock::CommonMethods
      include Shoes::Mock::Clickable

      def line_to(_x, _y)
      end

      def move_to(_x, _y)
      end

      def curve_to(*_args)
      end

      def arc_to(*_args)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
shoes-core-4.0.0.pre12 lib/shoes/mock/shape.rb
shoes-core-4.0.0.pre11 lib/shoes/mock/shape.rb
shoes-core-4.0.0.pre10 lib/shoes/mock/shape.rb
shoes-core-4.0.0.pre9 lib/shoes/mock/shape.rb