Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
23985524
Commit
23985524
authored
Feb 04, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Import unittest module where necessary.
parent
7c4880aa
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
25 additions
and
0 deletions
+25
-0
test/AddCommandTest.py
test/AddCommandTest.py
+1
-0
test/AppendCommandTest.py
test/AppendCommandTest.py
+2
-0
test/ArchiveCommandTest.py
test/ArchiveCommandTest.py
+2
-0
test/DeleteCommandTest.py
test/DeleteCommandTest.py
+2
-0
test/DepCommandTest.py
test/DepCommandTest.py
+2
-0
test/DepriCommandTest.py
test/DepriCommandTest.py
+2
-0
test/DoCommandTest.py
test/DoCommandTest.py
+1
-0
test/ListCommandTest.py
test/ListCommandTest.py
+2
-0
test/ListContextCommandTest.py
test/ListContextCommandTest.py
+2
-0
test/ListProjectCommandTest.py
test/ListProjectCommandTest.py
+2
-0
test/PostponeCommandTest.py
test/PostponeCommandTest.py
+1
-0
test/PriorityCommandTest.py
test/PriorityCommandTest.py
+2
-0
test/SortCommandTest.py
test/SortCommandTest.py
+2
-0
test/TagCommandTest.py
test/TagCommandTest.py
+2
-0
No files found.
test/AddCommandTest.py
View file @
23985524
...
...
@@ -15,6 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
datetime
import
date
import
unittest
from
topydo.lib
import
AddCommand
from
topydo.lib
import
ListCommand
...
...
test/AppendCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
from
topydo.lib.AppendCommand
import
AppendCommand
import
CommandTest
from
topydo.lib.TodoList
import
TodoList
...
...
test/ArchiveCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
from
topydo.lib.ArchiveCommand
import
ArchiveCommand
import
CommandTest
import
TestFacilities
...
...
test/DeleteCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
CommandTest
from
topydo.lib.Config
import
config
from
topydo.lib.DeleteCommand
import
DeleteCommand
...
...
test/DepCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
CommandTest
from
topydo.lib.DepCommand
import
DepCommand
from
topydo.lib.TodoList
import
TodoList
...
...
test/DepriCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
CommandTest
from
topydo.lib.DepriCommand
import
DepriCommand
from
topydo.lib.TodoList
import
TodoList
...
...
test/DoCommandTest.py
View file @
23985524
...
...
@@ -15,6 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
datetime
import
date
,
timedelta
import
unittest
import
CommandTest
from
topydo.lib.DoCommand
import
DoCommand
...
...
test/ListCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
from
topydo.lib.Config
import
config
import
CommandTest
from
topydo.lib.ListCommand
import
ListCommand
...
...
test/ListContextCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
CommandTest
import
TestFacilities
from
topydo.lib.ListContextCommand
import
ListContextCommand
...
...
test/ListProjectCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
CommandTest
import
TestFacilities
from
topydo.lib.ListProjectCommand
import
ListProjectCommand
...
...
test/PostponeCommandTest.py
View file @
23985524
...
...
@@ -15,6 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
datetime
import
date
,
timedelta
import
unittest
import
CommandTest
from
topydo.lib.PostponeCommand
import
PostponeCommand
...
...
test/PriorityCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
CommandTest
from
topydo.lib.PriorityCommand
import
PriorityCommand
from
topydo.lib.TodoList
import
TodoList
...
...
test/SortCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
CommandTest
from
topydo.lib.Config
import
config
from
topydo.lib.SortCommand
import
SortCommand
...
...
test/TagCommandTest.py
View file @
23985524
...
...
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
CommandTest
from
topydo.lib.TagCommand
import
TagCommand
from
topydo.lib.TodoList
import
TodoList
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment