27 lines
371 B
Python
27 lines
371 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
test_djangocms-blog
|
||
|
------------
|
||
|
|
||
|
Tests for `djangocms-blog` modules module.
|
||
|
"""
|
||
|
|
||
|
import os
|
||
|
import shutil
|
||
|
import unittest
|
||
|
|
||
|
from djangocms_blog import models
|
||
|
|
||
|
|
||
|
class TestDjangocms_blog(unittest.TestCase):
|
||
|
|
||
|
def setUp(self):
|
||
|
pass
|
||
|
|
||
|
def test_something(self):
|
||
|
pass
|
||
|
|
||
|
def tearDown(self):
|
||
|
pass
|