Ejemplo n.º 1
0
    def test_create_post_file(self):
        title = 'Test Post With Spaces'
        post_file_name = 'test-post-with-spaces.md'

        os.chdir(self.directory)
        blug.create_post(title, self.content_dir)
        self.assertTrue(
            os.path.exists(os.path.join(self.content_dir, post_file_name)))
Ejemplo n.º 2
0
    def test_create_post_file(self):
        title = 'Test Post With Spaces'
        post_file_name = 'test-post-with-spaces.md'

        os.chdir(self.directory)
        blug.create_post(title, self.content_dir)
        self.assertTrue(os.path.exists(os.path.join(
            self.content_dir,
            post_file_name)))
Ejemplo n.º 3
0
    def test_create_post_file(self):
        title = 'Test Post With Spaces'
        post_file_date = datetime.datetime.strftime(
                datetime.datetime.today(), '%Y-%m-%d-')
        post_file_name = post_file_date + '-'.join(
                str.split(title)) + '.markdown'

        blug.create_post(title)
        self.assertTrue(os.path.exists(os.path.join(os.getcwd(),
            'content', post_file_name)))
Ejemplo n.º 4
0
 def test_create_already_existing_post(self):
     title = 'Duplicate Post'
     blug.create_post(title, self.content_dir)
     self.assertRaises(EnvironmentError, blug.create_post, title,
                       self.content_dir)
Ejemplo n.º 5
0
 def test_create_already_existing_post(self):
     title = 'Duplicate Post'
     blug.create_post(title, self.content_dir)
     self.assertRaises(EnvironmentError, blug.create_post, title, self.content_dir)