Class: MarkdownExec::TestHashDelegator::TestHashDelegatorIterBlocksFromNestedFiles

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

Instance Method Summary collapse

Instance Method Details

#setupObject



3177
3178
3179
3180
3181
3182
3183
3184
3185
# File 'lib/hash_delegator.rb', line 3177

def setup
  @hd = HashDelegator.new
  @hd.instance_variable_set(:@delegate_object,
                            { filename: 'test.md' })
  @hd.stubs(:check_file_existence).with('test.md').returns(true)
  @hd.stubs(:initial_state).returns({})
  @hd.stubs(:cfile).returns(Minitest::Mock.new)
  @hd.stubs(:update_line_and_block_state)
end

#test_iter_blocks_from_nested_filesObject



3187
3188
3189
3190
3191
3192
3193
3194
3195
# File 'lib/hash_delegator.rb', line 3187

def test_iter_blocks_from_nested_files
  @hd.cfile.expect(:readlines, ['line 1', 'line 2'], ['test.md'], import_paths: nil)
  selected_messages = ['filtered message']

  result = @hd.iter_blocks_from_nested_files { selected_messages }
  assert_equal ['line 1', 'line 2'], result

  @hd.cfile.verify
end

#test_iter_blocks_from_nested_files_with_no_fileObject



3197
3198
3199
3200
3201
3202
3203
# File 'lib/hash_delegator.rb', line 3197

def test_iter_blocks_from_nested_files_with_no_file
  @hd.stubs(:check_file_existence).with('test.md').returns(false)

  assert_nil(@hd.iter_blocks_from_nested_files do
               ['filtered message']
             end)
end