Class: MdnScreens

Inherits:
Screens show all
Defined in:
lib/screens/mdn/mdn_screens.rb

Overview

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

Public: Initializes MdnScreens. 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/mdn/mdn_screens.rb', line 29

def initialize(*args)
  super(*args)
  @dvr = MdnDvr.new(@dut)
  @guide = MdnGuide.new(@dut)
  @library = MdnLibrary.new(@dut)
  @log_in = MdnLog_in.new(@dut)
  @live_tv = MdnLive_tv.new(@dut)
  @main_menu = MdnMain_menu.new(@dut)
  @mini_guide = MdnMini_guide.new(@dut)
  @movies = MdnMovies.new(@dut)
  @on_demand = MdnOn_demand.new(@dut)
  @parental_controls = MdnParental_controls.new(@dut)
  @product_page = MdnProduct_page.new(@dut)
  @search = MdnSearch.new(@dut)
  @settings = MdnSettings.new(@dut)
  @tv_shows = MdnTv_shows.new(@dut)
  @video_store = MdnVideo_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/mdn/mdn_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/mdn/mdn_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/mdn/mdn_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/mdn/mdn_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/mdn/mdn_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/mdn/mdn_screens.rb', line 26

def video_store
  @video_store
end