Class: MarkdownExec::TestHashDelegatorUpdateMenuAttribYieldSelectedWithBody
- Inherits:
-
Minitest::Test
- Object
- Minitest::Test
- MarkdownExec::TestHashDelegatorUpdateMenuAttribYieldSelectedWithBody
- Defined in:
- lib/hash_delegator.rb
Instance Method Summary collapse
- #setup ⇒ Object
- #test_update_menu_attrib_yield_selected_with_body ⇒ Object
- #test_update_menu_attrib_yield_selected_without_body ⇒ Object
Instance Method Details
#setup ⇒ Object
3203 3204 3205 3206 3207 3208 3209 3210 |
# File 'lib/hash_delegator.rb', line 3203 def setup @hd = HashDelegator.new @fcb = mock('Fcb') @fcb.stubs(:body).returns(true) HashDelegator.stubs(:initialize_fcb_names) HashDelegator.stubs(:default_block_title_from_body) Filter.stubs(:yield_to_block_if_applicable) end |
#test_update_menu_attrib_yield_selected_with_body ⇒ Object
3212 3213 3214 3215 3216 3217 3218 |
# File 'lib/hash_delegator.rb', line 3212 def HashDelegator.expects(:initialize_fcb_names).with(@fcb) HashDelegator.expects(:default_block_title_from_body).with(@fcb) Filter.expects(:yield_to_block_if_applicable).with(@fcb, [:some_message], {}) HashDelegator.(fcb: @fcb, messages: [:some_message]) end |
#test_update_menu_attrib_yield_selected_without_body ⇒ Object
3220 3221 3222 3223 3224 |
# File 'lib/hash_delegator.rb', line 3220 def @fcb.stubs(:body).returns(nil) HashDelegator.expects(:initialize_fcb_names).with(@fcb) HashDelegator.(fcb: @fcb, messages: [:some_message]) end |