Class: MarkdownExec::TestHashDelegator::TestHashDelegatorHandleBlockState

Inherits:
Minitest::Test
  • Object
show all
Defined in:
lib/hash_delegator.rb

Instance Method Summary collapse

Instance Method Details

#setupObject



3005
3006
3007
3008
# File 'lib/hash_delegator.rb', line 3005

def setup
  @hd = HashDelegator.new
  @mock_block_state = mock('block_state')
end

#test_handle_back_or_continue_with_backObject



3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
# File 'lib/hash_delegator.rb', line 3010

def test_handle_back_or_continue_with_back
  @mock_block_state.stubs(:state).returns(MenuState::BACK)
  @mock_block_state.stubs(:block).returns({ oname: 'sample_block' })

  @hd.handle_back_or_continue(@mock_block_state)

  assert_equal 'sample_block',
               @hd.instance_variable_get(:@delegate_object)[:block_name]
  assert @hd.instance_variable_get(:@menu_user_clicked_back_link)
end

#test_handle_back_or_continue_with_continueObject



3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
# File 'lib/hash_delegator.rb', line 3021

def test_handle_back_or_continue_with_continue
  @mock_block_state.stubs(:state).returns(MenuState::CONTINUE)
  @mock_block_state.stubs(:block).returns({ oname: 'another_block' })

  @hd.handle_back_or_continue(@mock_block_state)

  assert_equal 'another_block',
               @hd.instance_variable_get(:@delegate_object)[:block_name]
  refute @hd.instance_variable_get(:@menu_user_clicked_back_link)
end

#test_handle_back_or_continue_with_otherObject



3032
3033
3034
3035
3036
3037
3038
3039
3040
# File 'lib/hash_delegator.rb', line 3032

def test_handle_back_or_continue_with_other
  @mock_block_state.stubs(:state).returns(nil) # MenuState::OTHER
  @mock_block_state.stubs(:block).returns({ oname: 'other_block' })

  @hd.handle_back_or_continue(@mock_block_state)

  assert_nil @hd.instance_variable_get(:@delegate_object)[:block_name]
  assert_nil @hd.instance_variable_get(:@menu_user_clicked_back_link)
end