spec/unit/tab_spec.rb in ProMotion-1.2.1 vs spec/unit/tab_spec.rb in ProMotion-2.0.0.rc1

- old
+ new

@@ -10,31 +10,37 @@ @tab_bar = @app.open_tab_bar @tab_1, @tab_2, @tab_3, @tab_4 end after do - + end it "should have created a tab bar with four items" do @tab_bar.should != nil @tab_bar.should.be.kind_of(UITabBarController) @tab_bar.viewControllers.length.should == 4 end - + it "should have set a custom tab bar item" do @tab_bar.tabBar.items.first.title.should == "Tab Item" end - + it "should have set the others to their respective titles" do @tab_bar.tabBar.items[1].title.should == "Basic" @tab_bar.tabBar.items[2].title.should == "Home" @tab_bar.tabBar.items[3].title.should == "TestTableScreen" end - + it "should allow changing the tab bar item with set_tab_bar_item" do - @tab_1.set_tab_bar_item title: "Custom", icon: "test.jpeg" + @tab_1.set_tab_bar_item title: "Custom", item: "test.jpeg" @tab_bar.tabBar.items.first.title.should == "Custom" + end + + it "should allow replacing a view controller with `open`" do + new_screen = BasicScreen.new + @tab_4.open new_screen, in_tab: "Home" + @tab_bar.viewControllers[2].should == new_screen end end