1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#!/usr/bin/env python
import tempfile
import unittest
import os
from mkdocs.commands import new
class NewTests(unittest.TestCase):
def test_new(self):
tempdir = tempfile.mkdtemp()
os.chdir(tempdir)
new.new("myproject")
expected_paths = [
os.path.join(tempdir, "myproject"),
os.path.join(tempdir, "myproject", "mkdocs.yml"),
os.path.join(tempdir, "myproject", "docs"),
os.path.join(tempdir, "myproject", "docs", "index.md"),
]
for expected_path in expected_paths:
self.assertTrue(os.path.exists(expected_path))
|