testthat::context('fold')
testthat::describe('fold methods',{
  
  it('close',{
    testthat::expect_equal(
      foldend(),
      "\\if{html}{\\out{}}"
    )    
  })
  
  it('open default',{
    testthat::expect_equal(
      foldstart(),
      "\\if{html}{\\out{
}}"
    )
  })
  
  it('open with summary',{
    testthat::expect_equal(
      foldstart(title = 'test'),
      "\\if{html}{\\out{
  test  
}}"
    )
  })
  
})