module MarkdownExec

def test_select_block

def test_select_block
  blocks = [block1, block2]
  menu = [m1, m2]
  block, state = obj.select_block(blocks, menu, nil, {})
  assert_equal block1, block
  assert_equal MenuState::CONTINUE, state
end