Class: PassportScreens

Inherits:
Screens show all
Defined in:
lib/screens/passport/passport_screens.rb

Overview

Adds to or modifies the screens with Passport-specific screens.

Instance Attribute Summary collapse

Attributes inherited from Screens

#guide, #live_tv, #main_menu, #mini_guide, #on_demand, #parental_controls, #product_page, #search, #settings

Instance Method Summary collapse

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

#dvrObject (readonly)

Returns the value of attribute dvr.



21
22
23
# File 'lib/screens/passport/passport_screens.rb', line 21

def dvr
  @dvr
end

#libraryObject (readonly)

Returns the value of attribute library.



21
22
23
# File 'lib/screens/passport/passport_screens.rb', line 21

def library
  @library
end

#loginObject (readonly)

Returns the value of attribute login.



21
22
23
# File 'lib/screens/passport/passport_screens.rb', line 21

def 
  @login
end

#moviesObject (readonly)

Returns the value of attribute movies.



21
22
23
# File 'lib/screens/passport/passport_screens.rb', line 21

def movies
  @movies
end

#tv_showsObject (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_storeObject (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