Sha256: c2a9fb2398a84d37f350337602f966cfa647a57ff51832d73266e3aa6148b78e

Contents?: true

Size: 409 Bytes

Versions: 1

Compression:

Stored size: 409 Bytes

Contents

require 'swt_shoes/spec_helper'

describe Shoes::Swt::Rect do
  include_context "swt app"

  let(:left) { 55 }
  let(:top) { 77 }
  let(:width) { 222 }
  let(:height) { 111 }
  let(:dsl) {::Shoes::Rect.new shoes_app, parent, left, top, width, height}

  subject {
    Shoes::Swt::Rect.new dsl, swt_app
  }

  it_behaves_like "paintable"
  it_behaves_like "togglable"
  it_behaves_like 'clickable backend'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shoes-4.0.0.pre1 spec/swt_shoes/rect_spec.rb