~mordred/tarmac/fix-pre-commit-test-exception

« back to all changes in this revision

Viewing changes to tarmac/tests/test_commands.py

  • Committer: Paul Hummer
  • Date: 2010-04-24 03:36:30 UTC
  • Revision ID: paul@eventuallyanyway.com-20100424033630-gfcy4kx6vbxedii1
Changed references of tarmac.bin2 to tarmac.bin

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
'''Tests for tarmac.bin2.commands.py.'''
 
1
'''Tests for tarmac.bin.commands.py.'''
2
2
from cStringIO import StringIO
3
3
import os
4
4
import sys
5
5
 
6
 
from tarmac.bin2 import commands
 
6
from tarmac.bin import commands
7
7
from tarmac.config import TarmacConfig2
8
8
from tarmac.exceptions import CommandNotFound
9
9
from tarmac.tests import TarmacTestCase
10
10
 
11
11
 
12
12
class TestCommand(TarmacTestCase):
13
 
    '''Test for tarmac.bin2.commands.Command.'''
 
13
    '''Test for tarmac.bin.commands.Command.'''
14
14
 
15
15
    def test__init__(self):
16
16
        command_name = u'test'
25
25
 
26
26
 
27
27
class TestAuthCommand(TarmacTestCase):
28
 
    '''Test for tarmac.bin2.command.cmd_auth.'''
 
28
    '''Test for tarmac.bin.command.cmd_auth.'''
29
29
 
30
30
    NEEDS_SAMPLE_DATA = True
31
31