Class: MdnScreens
Overview
Adds to or modifies the screens with Mdn-specific screens.
Instance Attribute Summary collapse
-
#dvr ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#library ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#login ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#movies ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#tv_shows ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
-
#video_store ⇒ Object
readonly
WARNING the bellow snippet is an example and will need to be updated TODO.
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) ⇒ MdnScreens
constructor
Public: Initializes MdnScreens.
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
#dvr ⇒ Object (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 |
#library ⇒ Object (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 |
#login ⇒ Object (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 @login end |
#movies ⇒ Object (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_shows ⇒ Object (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_store ⇒ Object (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 |