Sha256: 43ad347ca22ef5f2688ead873732b13c20be784e55c8ef67af1eb9be18318c07

Contents?: true

Size: 1.81 KB

Versions: 7

Compression:

Stored size: 1.81 KB

Contents

describe 'Custom Root Layouts' do
  before do
    @view = NSView.new
    @subject = TestCustomRootLayout.new(root: @view)
  end

  it "should set the root view to the @view instance" do
    @subject.view.should == @view
  end

  it "should still create subviews" do
    @subject.view.subviews.first.should.be.kind_of NSButton
    @subject.view.subviews.first.subviews.first.should.be.kind_of NSTextField
  end

  it "should call style method" do
    @subject.view.backgroundColor.should == NSColor.blueColor
  end

  it "should raise exception if you try to specify a root inside the layout too" do
    -> do
      subject = TestCustomDuplicateRootLayout.new(root: @view)
      subject.view
    end.should.raise(MotionKit::ContextConflictError)
  end

  it "should allow multiple nested layouts" do
    @subject = TestMultipleNestedLayout.new
    @subject.view.backgroundColor.should == NSColor.purpleColor
    @subject.view.subviews.first.should.be.kind_of TestNestedView
    @subject.view.subviews.first.backgroundColor.should == NSColor.yellowColor
    @subject.view.subviews.first.subviews.first.should.be.kind_of NSButton
    @subject.view.subviews.first.subviews.first.backgroundColor.should == NSColor.blackColor
  end

  it "shouldn't build if `build` or `view` aren't called" do
    @subject.built?.should == false
  end

  it "should build when `build` is called" do
    @subject.build
    @subject.built?.should == true
  end

  it "should build when `view` is called" do
    @subject.view
    @subject.built?.should == true
  end

  it "should allow bare styles in layout when root is specified in initializer" do
    @subject = TestNoRootLayout.new(root: @view).build
    @subject.view.should == @view
    @subject.view.backgroundColor.should == NSColor.redColor
    @subject.view.subviews.first.should.be.kind_of?(NSTextField)
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
motion-kit-1.1.1 spec/osx/custom_root_layout_spec.rb
motion-kit-1.1.0 spec/osx/custom_root_layout_spec.rb
motion-kit-1.0.3 spec/osx/custom_root_layout_spec.rb
motion-kit-1.0.2 spec/osx/custom_root_layout_spec.rb
motion-kit-1.0.1 spec/osx/custom_root_layout_spec.rb
motion-kit-1.0.0 spec/osx/custom_root_layout_spec.rb
motion-kit-0.18.0 spec/osx/custom_root_layout_spec.rb