Files
ProMotion/spec/unit/view_title_screen.rb
2014-05-27 11:19:09 -07:00

11 lines
335 B
Ruby

describe "ProMotion::Screen UIView title functionality" do
def controller
@controller ||= ViewTitleScreen.new(nav_bar: true)
end
it "should allow a non-image UIView title" do
controller.navigationItem.titleView.should.not.be.kind_of UIImageView
controller.navigationItem.titleView.should.be.kind_of UIView
end
end