~roadmr/checkbox/912946

« back to all changes in this revision

Viewing changes to checkbox/test.py

  • Committer: Marc Tardif
  • Date: 2008-08-13 20:04:12 UTC
  • Revision ID: marc.tardif@canonical.com-20080813200412-52u3d6fs6ulnxlgv
Renamed hwtest to checkbox.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#
4
4
# Written by Marc Tardif <marc@interunion.ca>
5
5
#
6
 
# This file is part of HWTest.
 
6
# This file is part of Checkbox.
7
7
#
8
 
# HWTest is free software: you can redistribute it and/or modify
 
8
# Checkbox is free software: you can redistribute it and/or modify
9
9
# it under the terms of the GNU General Public License as published by
10
10
# the Free Software Foundation, either version 3 of the License, or
11
11
# (at your option) any later version.
12
12
#
13
 
# HWTest is distributed in the hope that it will be useful,
 
13
# Checkbox is distributed in the hope that it will be useful,
14
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
16
# GNU General Public License for more details.
17
17
#
18
18
# You should have received a copy of the GNU General Public License
19
 
# along with HWTest.  If not, see <http://www.gnu.org/licenses/>.
 
19
# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
20
20
#
21
21
"""
22
22
The purpose of this module is to encapsulate the concept of a test
29
29
import re
30
30
import logging
31
31
 
32
 
from hwtest.command import Command
33
 
from hwtest.description import Description
34
 
from hwtest.excluder import Excluder
35
 
from hwtest.iterator import Iterator, NEXT, PREV
36
 
from hwtest.repeater import PreRepeater
37
 
from hwtest.requires import Requires
38
 
from hwtest.resolver import Resolver
39
 
from hwtest.result import Result, FAIL, SKIP
 
32
from checkbox.command import Command
 
33
from checkbox.description import Description
 
34
from checkbox.excluder import Excluder
 
35
from checkbox.iterator import Iterator, NEXT, PREV
 
36
from checkbox.repeater import PreRepeater
 
37
from checkbox.requires import Requires
 
38
from checkbox.resolver import Resolver
 
39
from checkbox.result import Result, FAIL, SKIP
40
40
 
41
41
 
42
42
DESKTOP = "desktop"