Class: SaraScreens

Inherits:
Screens show all
Defined in:
lib/screens/sara/sara_screens.rb

Overview

Adds to or modifies the screens with Sara-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) ⇒ SaraScreens

Public: Initializes SaraScreens. NOT FOR USE IN TESTS.



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/screens/sara/sara_screens.rb', line 29

def initialize(*args)
  super(*args)
  @dvr = SaraDvr.new(@dut)
  @guide = SaraGuide.new(@dut)
  @library = SaraLibrary.new(@dut)
  @log_in = SaraLog_in.new(@dut)
  @live_tv = SaraLive_tv.new(@dut)
  @main_menu = SaraMain_menu.new(@dut)
  @mini_guide = SaraMini_guide.new(@dut)
  @movies = SaraMovies.new(@dut)
  @on_demand = SaraOn_demand.new(@dut)
  @parental_controls = SaraParental_controls.new(@dut)
  @product_page = SaraProduct_page.new(@dut)
  @search = SaraSearch.new(@dut)
  @settings = SaraSettings.new(@dut)
  @tv_shows = SaraTv_shows.new(@dut)
  @video_store = SaraVideo_store.new(@dut)

end

Instance Attribute Details

#dvrObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/sara/sara_screens.rb', line 26

def dvr
  @dvr
end

#libraryObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/sara/sara_screens.rb', line 26

def library
  @library
end

#loginObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/sara/sara_screens.rb', line 26

def 
  @login
end

#moviesObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/sara/sara_screens.rb', line 26

def movies
  @movies
end

#tv_showsObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/sara/sara_screens.rb', line 26

def tv_shows
  @tv_shows
end

#video_storeObject (readonly)

WARNING the bellow snippet is an example and will need to be updated TODO



26
27
28
# File 'lib/screens/sara/sara_screens.rb', line 26

def video_store
  @video_store
end