Sha256: 9a2e00869e90e1fe8da9637b5a999d83c88d49ced2475cc570fadcd38b210074
Contents?: true
Size: 1.75 KB
Versions: 2
Compression:
Stored size: 1.75 KB
Contents
require 'shoes/swt/spec_helper' describe Shoes::Swt::Background do include_context "swt app" let(:left) { 55 } let(:top) { 77 } let(:width) { 222 } let(:height) { 111 } let(:corners) { 0 } let(:fill) { Shoes::COLORS[:salmon] } let(:dsl) { double("dsl object", app: shoes_app, element_left: left, element_top: top, element_width: width, element_height: height, strokewidth: 1, curve: corners, fill: fill, hidden: false).as_null_object} subject { Shoes::Swt::Background.new dsl, swt_app } context "#initialize" do it { is_expected.to be_an_instance_of(Shoes::Swt::Background) } its(:dsl) { is_expected.to be(dsl) } end describe "#dispose" do let(:fill) { double("fill", gui: fill_gui) } let(:fill_gui) { double("fill gui") } it "lets subresources go" do expect(fill_gui).to receive(:dispose) subject.dispose end end it_behaves_like "paintable" it_behaves_like "updating visibility" describe "painter" do include_context "painter context" let(:corners) { 0 } let(:shape) { Shoes::Swt::Background.new dsl, swt_app} subject { Shoes::Swt::Background::Painter.new shape } it_behaves_like "fill painter" describe "square corners" do let(:corners) { 0 } it "fills rect" do expect(gc).to receive(:fill_round_rectangle).with(left, top, width, height, corners*2, corners*2) subject.paint_control(event) end end describe "round corners" do let(:corners) { 13 } it "fills rect" do expect(gc).to receive(:fill_round_rectangle).with(left, top, width, height, corners*2, corners*2) subject.paint_control(event) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
shoes-swt-4.0.0.pre4 | spec/shoes/swt/background_spec.rb |
shoes-swt-4.0.0.pre3 | spec/shoes/swt/background_spec.rb |