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
496e0339
Commit
496e0339
authored
May 30, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:bram85/topydo
parents
bac98294
d7e034dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
8 deletions
+31
-8
test/IcalCommandTest.py
test/IcalCommandTest.py
+28
-8
test/data/ListCommandUnicodeTest.ics
test/data/ListCommandUnicodeTest.ics
+0
-0
topydo/lib/View.py
topydo/lib/View.py
+3
-0
No files found.
test/IcalCommandTest.py
View file @
496e0339
...
@@ -21,11 +21,19 @@ import unittest
...
@@ -21,11 +21,19 @@ import unittest
from
topydo.lib.Config
import
config
from
topydo.lib.Config
import
config
from
topydo.commands.IcalCommand
import
IcalCommand
from
topydo.commands.IcalCommand
import
IcalCommand
from
test.CommandTest
import
CommandTest
from
test.CommandTest
import
CommandTest
,
utf8
from
test.TestFacilities
import
load_file_to_todolist
from
test.TestFacilities
import
load_file_to_todolist
IS_PYTHON_32
=
(
sys
.
version_info
.
major
,
sys
.
version_info
.
minor
)
==
(
3
,
2
)
IS_PYTHON_32
=
(
sys
.
version_info
.
major
,
sys
.
version_info
.
minor
)
==
(
3
,
2
)
def
replace_ical_tags
(
p_text
):
# replace identifiers with dots, since they're random.
result
=
re
.
sub
(
r'\bical:....\b'
,
'ical:....'
,
p_text
)
result
=
re
.
sub
(
r'\bUID:....\b'
,
'UID:....'
,
result
)
return
result
class
IcalCommandTest
(
CommandTest
):
class
IcalCommandTest
(
CommandTest
):
def
setUp
(
self
):
def
setUp
(
self
):
super
(
IcalCommandTest
,
self
).
setUp
()
super
(
IcalCommandTest
,
self
).
setUp
()
...
@@ -33,13 +41,6 @@ class IcalCommandTest(CommandTest):
...
@@ -33,13 +41,6 @@ class IcalCommandTest(CommandTest):
@
unittest
.
skipIf
(
IS_PYTHON_32
,
"icalendar is not supported for Python 3.2"
)
@
unittest
.
skipIf
(
IS_PYTHON_32
,
"icalendar is not supported for Python 3.2"
)
def
test_ical
(
self
):
def
test_ical
(
self
):
def
replace_ical_tags
(
p_text
):
# replace identifiers with dots, since they're random.
result
=
re
.
sub
(
r'\bical:....\b'
,
'ical:....'
,
p_text
)
result
=
re
.
sub
(
r'\bUID:....\b'
,
'UID:....'
,
result
)
return
result
command
=
IcalCommand
([
""
],
self
.
todolist
,
self
.
out
,
self
.
error
)
command
=
IcalCommand
([
""
],
self
.
todolist
,
self
.
out
,
self
.
error
)
command
.
execute
()
command
.
execute
()
...
@@ -80,5 +81,24 @@ class IcalCommandTest(CommandTest):
...
@@ -80,5 +81,24 @@ class IcalCommandTest(CommandTest):
self
.
assertEqual
(
self
.
output
,
""
)
self
.
assertEqual
(
self
.
output
,
""
)
self
.
assertEqual
(
self
.
errors
,
"icalendar is not supported in this Python version.
\
n
"
)
self
.
assertEqual
(
self
.
errors
,
"icalendar is not supported in this Python version.
\
n
"
)
class
IcalCommandUnicodeTest
(
CommandTest
):
def
setUp
(
self
):
super
(
IcalCommandUnicodeTest
,
self
).
setUp
()
self
.
todolist
=
load_file_to_todolist
(
"test/data/ListCommandUnicodeTest.txt"
)
@
unittest
.
skipIf
(
IS_PYTHON_32
,
"icalendar is not supported for Python 3.2"
)
def
test_ical_unicode
(
self
):
command
=
IcalCommand
([
""
],
self
.
todolist
,
self
.
out
,
self
.
error
)
command
.
execute
()
self
.
assertTrue
(
self
.
todolist
.
is_dirty
())
icaltext
=
""
with
codecs
.
open
(
'test/data/ListCommandUnicodeTest.ics'
,
'r'
,
encoding
=
'utf-8'
)
as
ical
:
icaltext
=
ical
.
read
()
self
.
assertEqual
(
replace_ical_tags
(
self
.
output
),
utf8
(
replace_ical_tags
(
icaltext
)))
self
.
assertEqual
(
self
.
errors
,
""
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
test/data/ListCommandUnicodeTest.ics
0 → 100644
View file @
496e0339
This diff was suppressed by a .gitattributes entry.
topydo/lib/View.py
View file @
496e0339
...
@@ -16,12 +16,15 @@
...
@@ -16,12 +16,15 @@
""" A view is a list of todos, sorted and filtered. """
""" A view is a list of todos, sorted and filtered. """
from
six
import
python_2_unicode_compatible
from
topydo.lib.PrettyPrinterFilter
import
(
from
topydo.lib.PrettyPrinterFilter
import
(
PrettyPrinterColorFilter
,
PrettyPrinterColorFilter
,
PrettyPrinterNumbers
PrettyPrinterNumbers
)
)
from
topydo.lib.PrettyPrinter
import
PrettyPrinter
from
topydo.lib.PrettyPrinter
import
PrettyPrinter
@
python_2_unicode_compatible
class
View
(
object
):
class
View
(
object
):
"""
"""
A view is instantiated by a todo list, usually obtained from a todo.txt
A view is instantiated by a todo list, usually obtained from a todo.txt
...
...
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