Class: PassportScreens
- Defined in:
- lib/screens/passport/passport_screens.rb
Overview
Adds to or modifies the screens with Passport-specific screens.
Instance Attribute Summary collapse
-
#dvr ⇒ Object
readonly
Returns the value of attribute dvr.
-
#library ⇒ Object
readonly
Returns the value of attribute library.
-
#login ⇒ Object
readonly
Returns the value of attribute login.
-
#movies ⇒ Object
readonly
Returns the value of attribute movies.
-
#tv_shows ⇒ Object
readonly
Returns the value of attribute tv_shows.
-
#video_store ⇒ Object
readonly
Returns the value of attribute video_store.
Attributes inherited from Screens
#guide, #live_tv, #main_menu, #mini_guide, #on_demand, #parental_controls, #product_page, #search, #settings
Instance Method Summary collapse
-
#initialize(*args) ⇒ PassportScreens
constructor
Public: Initializes PassportScreens.
Constructor Details
#initialize(*args) ⇒ PassportScreens
Public: Initializes PassportScreens. NOT FOR USE IN TESTS.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/screens/passport/passport_screens.rb', line 24 def initialize(*args) super(*args) @dvr = PassportDvr.new(@dut) @guide = PassportGuide.new(@dut) @mini_guide = PassportMiniGuide.new(@dut) @main_menu = PassportMainMenu.new(@dut) @on_demand = PassportOnDemand.new(@dut) @live_tv = PassportLiveTv.new(@dut) @settings = PassportSettings.new(@dut) @parental_controls = PassportParentalControls.new(@dut) @search = PassportSearch.new(@dut) @product_page = PassportProductPage.new(@dut) @library = PassportLibrary.new(@dut) @movies = PassportMovies.new(@dut) @tv_shows = PassportTvShows.new(@dut) @video_store = PassportVideoStore.new(@dut) end |
Instance Attribute Details
#dvr ⇒ Object (readonly)
Returns the value of attribute dvr.
21 22 23 |
# File 'lib/screens/passport/passport_screens.rb', line 21 def dvr @dvr end |
#library ⇒ Object (readonly)
Returns the value of attribute library.
21 22 23 |
# File 'lib/screens/passport/passport_screens.rb', line 21 def library @library end |
#login ⇒ Object (readonly)
Returns the value of attribute login.
21 22 23 |
# File 'lib/screens/passport/passport_screens.rb', line 21 def login @login end |
#movies ⇒ Object (readonly)
Returns the value of attribute movies.
21 22 23 |
# File 'lib/screens/passport/passport_screens.rb', line 21 def movies @movies end |
#tv_shows ⇒ Object (readonly)
Returns the value of attribute tv_shows.
21 22 23 |
# File 'lib/screens/passport/passport_screens.rb', line 21 def tv_shows @tv_shows end |
#video_store ⇒ Object (readonly)
Returns the value of attribute video_store.
21 22 23 |
# File 'lib/screens/passport/passport_screens.rb', line 21 def video_store @video_store end |