18 lines
433 B
Python
18 lines
433 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
import os, sys
|
|
from mock import patch, call
|
|
import unittest
|
|
import random
|
|
from collections import defaultdict
|
|
from werkzeug.security import generate_password_hash, check_password_hash
|
|
|
|
from scaffold.core.data.sql import query
|
|
from scaffold.core.data.database import db
|
|
|
|
from website.config import settings
|
|
from website.data import site_user
|
|
|
|
class TestEmail(unittest.TestCase):
|
|
pass
|