Skip to content

Commit

Permalink
Reveal tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljoseph committed Oct 14, 2013
1 parent f1dff79 commit 6579e17
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_remarkable.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,11 @@ def test_remark(self):
sys.argv = 'remarkable remark atp.md'.split(' ')
cli.main()
self.assertTrue(os.path.exists('%s.html' % self.example_file))


class TestRevealTestCase(BaseTestCase):

def test_reveal(self):
sys.argv = 'remarkable reveal atp.md'.split(' ')
cli.main()
self.assertTrue(os.path.exists('%s.html' % self.example_file))

0 comments on commit 6579e17

Please sign in to comment.