Boilerplate (still needs working)
This commit is contained in:
parent
d106a19bdc
commit
0cbc314068
25 changed files with 1111 additions and 0 deletions
27
tests/test_models.py
Normal file
27
tests/test_models.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#!/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
|
||||
Loading…
Add table
Add a link
Reference in a new issue