mirror of
https://github.com/zhigang1992/ProMotion.git
synced 2026-06-01 10:18:46 +08:00
11 lines
335 B
Ruby
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
|