Sha256: 5772d37556872f5244876f827bded07abbc6a30ff52167bf728933bf38531e29
Contents?: true
Size: 1.41 KB
Versions: 42
Compression:
Stored size: 1.41 KB
Contents
describe 'Assigning explicit root view' do before { @subject = TestRootLayout.new } it "should allow setting the root view" do @subject.view.should.be.kind_of UIScrollView end it "should still create subviews" do @subject.view.subviews.first.should.be.kind_of UIButton @subject.view.subviews.first.subviews.first.should.be.kind_of UILabel end it "should call style method" do @subject.view @subject.scroll_view_styled.should == true end it "should call style method on simple root layout" do subject = TestSimpleRootLayout.new subject.view subject.label_styled.should == true end it "should raise exception if you try to specify two roots" do -> do subject = TestDuplicateRootLayout.new subject.view end.should.raise(MotionKit::ContextConflictError) end it "should raise exception if you don't add views inside the root" do -> do subject = TestNoRootContextLayout.new subject.view end.should.raise(MotionKit::NoContextError) end it 'should raise an exception when there is no context' do -> do subject = TestNoContextLayout.new subject.foo end.should.raise(MotionKit::NoContextError) end it 'should raise an exception when creating a root view outside of `layout`' do -> do subject = TestInvalidRootContextLayout.new subject.foo end.should.raise(MotionKit::InvalidRootError) end end
Version data entries
42 entries across 36 versions & 1 rubygems