Skip to content

Commit

Permalink
Organizing imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermechapiewski committed Oct 5, 2009
1 parent 5b7e919 commit fc75a53
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions tests/cli_test.py
@@ -1,7 +1,7 @@
from test import *
from cli import *
import unittest

from cli import *

class CLITest(unittest.TestCase):

def test_it_should_configure_all_options(self):
Expand Down
4 changes: 2 additions & 2 deletions tests/config_test.py
@@ -1,8 +1,8 @@
from test import *
from config import *
import codecs
import unittest

from config import *

class ConfigTest(unittest.TestCase):

def test_it_should_parse_migrations_dir_with_one_relative_dir(self):
Expand Down
6 changes: 3 additions & 3 deletions tests/core_test.py
@@ -1,12 +1,12 @@
# coding: utf-8
from test import *
from config import *
from core import *
import codecs
import os
import stubs
import unittest

from config import *
from core import *

def create_file(file_name, content=None):
f = codecs.open(file_name, 'w', 'utf-8')
if content:
Expand Down
4 changes: 2 additions & 2 deletions tests/helpers_test.py
@@ -1,7 +1,7 @@
from test import *
from helpers import *
import unittest

from helpers import *

class ListsTest(unittest.TestCase):

def test_it_should_subtract_lists(self):
Expand Down
4 changes: 2 additions & 2 deletions tests/main_test.py
@@ -1,8 +1,8 @@
from test import *
from main import *
from mox import Mox
import unittest

from main import *

class MainTest(unittest.TestCase):

def setUp(self):
Expand Down
7 changes: 3 additions & 4 deletions tests/mysql_test.py
@@ -1,10 +1,9 @@
from test import *
from config import *
from mysql import *
from mox import Mox, MockObject
import os
import unittest

from mox import Mox, MockObject
from config import *
from mysql import *

class MySQLTest(unittest.TestCase):

Expand Down

0 comments on commit fc75a53

Please sign in to comment.