sculd 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,35 +9,37 @@
9
9
  #
10
10
  class Sculd::Plan::Deadline < Sculd::Plan
11
11
 
12
- SYMBOL_CHAR = "!"
13
- DEFAULT_OPTION = 7
12
+ SYMBOL_CHAR = "!"
13
+ DEFAULT_OPTION = 7
14
14
 
15
- def priority(today)
16
- #pp @option
17
- #@option = 1 if @option < 1
18
- option = (@option || DEFAULT_OPTION)
19
- beginning = @datetime - option
20
- #pp beginning
21
- if today < beginning
22
- return 0
23
- elsif today <= @datetime
24
- rp = Sculd::Plan::REMINDER_PRIORITY
25
- dp = Sculd::Plan::DEADLINE_PRIORITY
26
- return (rp + (dp - rp) * (today - beginning)/(option.to_f)).to_i
27
- else
28
- return Sculd::Plan::DEADLINE_PRIORITY
15
+ def priority(today)
16
+ #pp @option
17
+ #@option = 1 if @option < 1
18
+ option = (@option || DEFAULT_OPTION)
19
+ beginning = @datetime - option
20
+ #pp beginning
21
+ if today < beginning
22
+ return 0
23
+ elsif today == @datetime
24
+ return Sculd::Plan::DEADLINE_PRIORITY
25
+ elsif today <= @datetime
26
+ rp = Sculd::Plan::REMINDER_PRIORITY
27
+ dp = Sculd::Plan::DEADLINE_PRIORITY
28
+ return (rp + (dp - rp) * (today - beginning)/(option.to_f)).to_i
29
+ else
30
+ return Sculd::Plan::DEADLINE_PRIORITY
31
+ end
29
32
  end
30
- end
31
33
 
32
- def event_dates
33
- #@option ||= DEFAULT_OPTION
34
+ def event_dates
35
+ #@option ||= DEFAULT_OPTION
34
36
 
35
- results = []
36
- results << @datetime - (@option || DEFAULT_OPTION)
37
- results << @datetime
38
- results.map do |datetime|
39
- Date.new(datetime.year, datetime.month, datetime.day)
37
+ results = []
38
+ results << @datetime - (@option || DEFAULT_OPTION) unless @option == 0
39
+ results << @datetime
40
+ results.map do |datetime|
41
+ Date.new(datetime.year, datetime.month, datetime.day)
42
+ end
40
43
  end
41
- end
42
44
  end
43
45
 
@@ -9,20 +9,20 @@
9
9
  #
10
10
  class Sculd::Plan::Reminder < Sculd::Plan
11
11
 
12
- SYMBOL_CHAR = "-"
12
+ SYMBOL_CHAR = "-"
13
13
 
14
- # value of @option does not work
15
- def priority(today = Date.now)
16
- if today < @datetime
17
- return 0
18
- else
19
- #@option = 1 if @option < 1
20
- return Sculd::Plan::REMINDER_PRIORITY - (today - @datetime) #/@option
14
+ # value of @option does not work
15
+ def priority(today = Date.now)
16
+ if today < @datetime
17
+ return 0
18
+ else
19
+ #@option = 1 if @option < 1
20
+ return Sculd::Plan::REMINDER_PRIORITY - (today - @datetime) #/@option
21
+ end
21
22
  end
22
- end
23
23
 
24
- def event_dates
25
- [Date.new(@datetime.year, @datetime.month, @datetime.day)]
26
- end
24
+ def event_dates
25
+ [Date.new(@datetime.year, @datetime.month, @datetime.day)]
26
+ end
27
27
  end
28
28
 
@@ -8,15 +8,15 @@
8
8
  #
9
9
  class Sculd::Plan::Schedule < Sculd::Plan
10
10
 
11
- SYMBOL_CHAR = "@"
11
+ SYMBOL_CHAR = "@"
12
12
 
13
- #
14
- def priority(today = Date.new)
15
- return 0
16
- end
13
+ #
14
+ def priority(today = Date.new)
15
+ return 0
16
+ end
17
17
 
18
- def event_dates
19
- [Date.new(@datetime.year, @datetime.month, @datetime.day)]
20
- end
18
+ def event_dates
19
+ [Date.new(@datetime.year, @datetime.month, @datetime.day)]
20
+ end
21
21
  end
22
22
 
@@ -9,35 +9,35 @@
9
9
  #
10
10
  class Sculd::Plan::Todo < Sculd::Plan
11
11
 
12
- SYMBOL_CHAR = "+"
13
- DEFAULT_OPTION = 7
12
+ SYMBOL_CHAR = "+"
13
+ DEFAULT_OPTION = 7
14
14
 
15
- #
16
- def priority(today)
17
- #@option = 1 if @option < 1
18
- option = @option || DEFAULT_OPTION
19
- beginning = @datetime
20
- ending = @datetime + option
21
- if today < beginning
22
- return 0
23
- elsif today <= ending
24
- rp = Sculd::Plan::REMINDER_PRIORITY
25
- dp = Sculd::Plan::DEADLINE_PRIORITY
26
- return (rp + (dp - rp) * (today - beginning)/(option.to_f)).to_i
27
- else
28
- return Sculd::Plan::DEADLINE_PRIORITY
15
+ #
16
+ def priority(today)
17
+ #@option = 1 if @option < 1
18
+ option = @option || DEFAULT_OPTION
19
+ beginning = @datetime
20
+ ending = @datetime + option
21
+ if today < beginning
22
+ return 0
23
+ elsif today <= ending
24
+ rp = Sculd::Plan::REMINDER_PRIORITY
25
+ dp = Sculd::Plan::DEADLINE_PRIORITY
26
+ return (rp + (dp - rp) * (today - beginning)/(option.to_f)).to_i
27
+ else
28
+ return Sculd::Plan::DEADLINE_PRIORITY
29
+ end
29
30
  end
30
- end
31
31
 
32
- def event_dates
33
- #@option ||= DEFAULT_OPTION
32
+ def event_dates
33
+ #@option ||= DEFAULT_OPTION
34
34
 
35
- results = []
36
- results << @datetime
37
- results << @datetime + (@option || DEFAULT_OPTION)
38
- results.map do |datetime|
39
- Date.new(datetime.year, datetime.month, datetime.day)
35
+ results = []
36
+ results << @datetime
37
+ results << @datetime + (@option || DEFAULT_OPTION)
38
+ results.map do |datetime|
39
+ Date.new(datetime.year, datetime.month, datetime.day)
40
+ end
40
41
  end
41
- end
42
42
  end
43
43
 
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "sculd"
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["ippei94da"]
12
- s.date = "2014-05-06"
12
+ s.date = "2014-08-29"
13
13
  s.description = "Schedule management system using 'howm' like format. Plans, i.e., schedule(@), reminder(-), deadline(!), and tood(+), make events and tasks. Command 'sculd' can output events on each date and tasks with high priority. "
14
14
  s.email = "ippei94da@gmail.com"
15
15
  s.executables = ["dates", "sculd"]
@@ -59,20 +59,20 @@ Gem::Specification.new do |s|
59
59
 
60
60
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
61
61
  s.add_development_dependency(%q<rdoc>, ["~> 4.1.1"])
62
- s.add_development_dependency(%q<bundler>, ["~> 1.3.5"])
62
+ s.add_development_dependency(%q<bundler>, ["~> 1.7.2"])
63
63
  s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
64
64
  s.add_development_dependency(%q<simplecov>, [">= 0.8.2"])
65
65
  s.add_development_dependency(%q<highline>, [">= 1.6.21"])
66
66
  else
67
67
  s.add_dependency(%q<rdoc>, ["~> 4.1.1"])
68
- s.add_dependency(%q<bundler>, ["~> 1.3.5"])
68
+ s.add_dependency(%q<bundler>, ["~> 1.7.2"])
69
69
  s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
70
70
  s.add_dependency(%q<simplecov>, [">= 0.8.2"])
71
71
  s.add_dependency(%q<highline>, [">= 1.6.21"])
72
72
  end
73
73
  else
74
74
  s.add_dependency(%q<rdoc>, ["~> 4.1.1"])
75
- s.add_dependency(%q<bundler>, ["~> 1.3.5"])
75
+ s.add_dependency(%q<bundler>, ["~> 1.7.2"])
76
76
  s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
77
77
  s.add_dependency(%q<simplecov>, [">= 0.8.2"])
78
78
  s.add_dependency(%q<highline>, [">= 1.6.21"])
@@ -1,11 +1,11 @@
1
1
  require 'rubygems'
2
2
  require 'bundler'
3
3
  begin
4
- Bundler.setup(:default, :development)
4
+ Bundler.setup(:default, :development)
5
5
  rescue Bundler::BundlerError => e
6
- $stderr.puts e.message
7
- $stderr.puts "Run `bundle install` to install missing gems"
8
- exit e.status_code
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
9
  end
10
10
  require 'test/unit'
11
11
 
@@ -4,67 +4,71 @@
4
4
  require "helper"
5
5
 
6
6
  class TC_Deadline < Test::Unit::TestCase
7
- def setup
8
- date = Date.new(2012, 10, 15)
9
- @d00 = Sculd::Plan::Deadline.new(date, false, 10, 'deadlineA')
7
+ def setup
8
+ date = Date.new(2012, 10, 15)
9
+ @d00 = Sculd::Plan::Deadline.new(date, false, 10, 'deadlineA')
10
10
 
11
- date = DateTime.new(2012, 10, 15, 23, 45, 00)
12
- @d01 = Sculd::Plan::Deadline.new(date, false, 10, 'deadlineA')
11
+ date = DateTime.new(2012, 10, 15, 23, 45, 00)
12
+ @d01 = Sculd::Plan::Deadline.new(date, false, 10, 'deadlineA')
13
13
 
14
- date = Date.new(2012, 10, 15)
15
- @d02 = Sculd::Plan::Deadline.new(date, false, nil, 'deadlineA')
14
+ date = Date.new(2012, 10, 15)
15
+ @d02 = Sculd::Plan::Deadline.new(date, false, nil, 'deadlineA')
16
16
 
17
- #date = Date.new(2012, 10, 15)
18
- #@d03 = Sculd::Plan::Deadline.new(date, false, 0, 'deadlineA')
17
+ date = Date.new(2012, 10, 15)
18
+ @d03 = Sculd::Plan::Deadline.new(date, false, 0, 'deadlineA')
19
19
 
20
- end
20
+ end
21
21
 
22
- #context 'Date[2012-10-15], 10, [2012-10-15]!10 deadlineA' do
22
+ #context 'Date[2012-10-15], 10, [2012-10-15]!10 deadlineA' do
23
23
 
24
- def test_priority
25
- today = Date.new(2012, 10, 15)
26
- assert_equal(20000, @d00.priority(today))
24
+ def test_priority
25
+ today = Date.new(2012, 10, 15)
26
+ assert_equal(20000, @d00.priority(today))
27
27
 
28
- today = Date.new(2012, 10, 20)
29
- assert_equal(20000, @d00.priority(today))
28
+ today = Date.new(2012, 10, 20)
29
+ assert_equal(20000, @d00.priority(today))
30
30
 
31
- today = Date.new(2012, 10, 10)
32
- assert_equal(15000, @d00.priority(today))
31
+ today = Date.new(2012, 10, 10)
32
+ assert_equal(15000, @d00.priority(today))
33
33
 
34
- today = Date.new(2012, 10, 1)
35
- assert_equal(0, @d00.priority(today))
34
+ today = Date.new(2012, 10, 1)
35
+ assert_equal(0, @d00.priority(today))
36
36
 
37
37
 
38
- today = Date.new(2012, 10, 1)
39
- assert_equal( 0, @d02.priority(today))
38
+ today = Date.new(2012, 10, 1)
39
+ assert_equal( 0, @d02.priority(today))
40
40
 
41
- today = Date.new(2012, 10, 8)
42
- assert_equal(10000, @d02.priority(today))
41
+ today = Date.new(2012, 10, 8)
42
+ assert_equal(10000, @d02.priority(today))
43
43
 
44
- today = Date.new(2012, 10, 10)
45
- assert_equal(12857, @d02.priority(today))
44
+ today = Date.new(2012, 10, 10)
45
+ assert_equal(12857, @d02.priority(today))
46
46
 
47
- today = Date.new(2012, 10, 15)
48
- assert_equal(20000, @d02.priority(today))
47
+ today = Date.new(2012, 10, 15)
48
+ assert_equal(20000, @d02.priority(today))
49
49
 
50
- today = Date.new(2012, 10, 20)
51
- assert_equal(20000, @d02.priority(today))
52
- end
50
+ today = Date.new(2012, 10, 20)
51
+ assert_equal(20000, @d02.priority(today))
53
52
 
54
- def test_event_dates
55
- results = @d00.event_dates
56
- assert_equal(2 , results.size)
57
- assert_equal(Date.new(2012, 10, 5), results[0] )
58
- assert_equal(Date.new(2012, 10, 15), results[1] )
59
- assert_equal(Date , results[0].class )
60
- assert_equal(Date , results[1].class )
61
53
 
62
- results = @d01.event_dates
63
- assert_equal(2 , results.size)
64
- assert_equal(Date.new(2012, 10, 5), results[0] )
65
- assert_equal(Date.new(2012, 10, 15), results[1] )
66
- assert_equal(Date , results[0].class )
67
- assert_equal(Date , results[1].class )
68
- end
54
+ today = Date.new(2012, 10, 15)
55
+ assert_equal(20000, @d03.priority(today))
56
+ end
57
+
58
+ def test_event_dates
59
+ results = @d00.event_dates
60
+ assert_equal(2 , results.size)
61
+ assert_equal(Date.new(2012, 10, 5), results[0] )
62
+ assert_equal(Date.new(2012, 10, 15), results[1] )
63
+ assert_equal(Date , results[0].class )
64
+ assert_equal(Date , results[1].class )
65
+
66
+ results = @d01.event_dates
67
+ assert_equal(2 , results.size)
68
+ assert_equal(Date.new(2012, 10, 5), results[0] )
69
+ assert_equal(Date.new(2012, 10, 15), results[1] )
70
+ assert_equal(Date , results[0].class )
71
+ assert_equal(Date , results[1].class )
72
+ end
69
73
 
70
74
  end
@@ -6,109 +6,109 @@ require "helper"
6
6
  #require "pkg/klass.rb"
7
7
 
8
8
  class Sculd::Manager
9
- public :load_file, :show_events, :days_events, :show_tasks
10
- attr_accessor :plans
9
+ public :load_file, :show_events, :days_events, :show_tasks
10
+ attr_accessor :plans
11
11
  end
12
12
 
13
13
  class TC_Manager < Test::Unit::TestCase
14
- def setup
15
- @s00 = Sculd::Manager.new("test/schedule/empty")
16
- # @s01 = Sculd::Manager.new("test/schedule/normal")
17
- end
14
+ def setup
15
+ @s00 = Sculd::Manager.new("test/schedule/empty")
16
+ # @s01 = Sculd::Manager.new("test/schedule/normal")
17
+ end
18
18
 
19
- # def test_load_file
20
- # #context "correct data" do #it "should overwrite data" do
21
- # @s00.load_file("test/schedule/normal/a.dat")
22
- # assert_equal(8, @s00.plans.size)
23
- # plans = @s00.plans
24
- # assert(plans.shift.is_a? Sculd::Plan)
25
- # assert(plans.shift.is_a? Sculd::Plan)
26
- # assert(plans.shift.is_a? Sculd::Plan)
27
- # assert(plans.shift.is_a? Sculd::Plan)
28
- # assert(plans.shift.is_a? Sculd::Plan)
29
- # assert(plans.shift.is_a? Sculd::Plan)
30
- # assert(plans.shift.is_a? Sculd::Plan)
31
- # assert(plans.shift.is_a? Sculd::Plan)
32
- # end
19
+ # def test_load_file
20
+ # #context "correct data" do #it "should overwrite data" do
21
+ # @s00.load_file("test/schedule/normal/a.dat")
22
+ # assert_equal(8, @s00.plans.size)
23
+ # plans = @s00.plans
24
+ # assert(plans.shift.is_a? Sculd::Plan)
25
+ # assert(plans.shift.is_a? Sculd::Plan)
26
+ # assert(plans.shift.is_a? Sculd::Plan)
27
+ # assert(plans.shift.is_a? Sculd::Plan)
28
+ # assert(plans.shift.is_a? Sculd::Plan)
29
+ # assert(plans.shift.is_a? Sculd::Plan)
30
+ # assert(plans.shift.is_a? Sculd::Plan)
31
+ # assert(plans.shift.is_a? Sculd::Plan)
32
+ # end
33
33
 
34
- def test_load_file_empty
35
- @s00.load_file("test/schedule/empty/empty.dat")
36
- assert_equal(0, @s00.plans.size)
34
+ def test_load_file_empty
35
+ @s00.load_file("test/schedule/empty/empty.dat")
36
+ assert_equal(0, @s00.plans.size)
37
37
 
38
- #context "data containing error" do it "should interrupt with error line." do
39
- io = StringIO.new
40
- assert_raise(Sculd::Manager::LoadError){ @s00.load_file("test/schedule/error/error.dat", io)}
41
- end
38
+ #context "data containing error" do it "should interrupt with error line." do
39
+ io = StringIO.new
40
+ assert_raise(Sculd::Manager::LoadError){ @s00.load_file("test/schedule/error/error.dat", io)}
41
+ end
42
42
 
43
- # def test_days_events
44
- # #it 'should return hash dates as keys and events as values.' do
45
- # #pp @s01
46
- # results = @s01.days_events
47
- # keys = results.keys
48
- # #pp results
43
+ # def test_days_events
44
+ # #it 'should return hash dates as keys and events as values.' do
45
+ # #pp @s01
46
+ # results = @s01.days_events
47
+ # keys = results.keys
48
+ # #pp results
49
49
  #
50
- # ## normal/a.dat
51
- # assert_equal(Date.new(2012, 9, 15), keys.shift)
52
- # assert_equal(Date.new(2012, 9, 9), keys.shift)
53
- # assert_equal(Date.new(2012, 9, 16), keys.shift)
54
- # assert_equal(Date.new(2012, 9, 17), keys.shift)
55
- # assert_equal(Date.new(2012, 9, 18), keys.shift)
56
- # assert_equal(Date.new(2012, 9, 25), keys.shift)
57
- # assert_equal(Date.new(2012, 8, 17), keys.shift)
58
- # assert_equal(Date.new(2012, 9, 28), keys.shift)
59
- # ## normal/b.dat
60
- # assert_equal(Date.new(2012,10, 15), keys.shift)
61
- # assert_equal(Date.new(2012,10, 9), keys.shift)
62
- # assert_equal(Date.new(2012,10, 16), keys.shift)
63
- # assert_equal(Date.new(2012,10, 17), keys.shift)
64
- # assert_equal(Date.new(2012,10, 18), keys.shift)
65
- # assert_equal(Date.new(2012,10, 25), keys.shift)
66
- # assert_equal(nil , keys.shift)
50
+ # ## normal/a.dat
51
+ # assert_equal(Date.new(2012, 9, 15), keys.shift)
52
+ # assert_equal(Date.new(2012, 9, 9), keys.shift)
53
+ # assert_equal(Date.new(2012, 9, 16), keys.shift)
54
+ # assert_equal(Date.new(2012, 9, 17), keys.shift)
55
+ # assert_equal(Date.new(2012, 9, 18), keys.shift)
56
+ # assert_equal(Date.new(2012, 9, 25), keys.shift)
57
+ # assert_equal(Date.new(2012, 8, 17), keys.shift)
58
+ # assert_equal(Date.new(2012, 9, 28), keys.shift)
59
+ # ## normal/b.dat
60
+ # assert_equal(Date.new(2012,10, 15), keys.shift)
61
+ # assert_equal(Date.new(2012,10, 9), keys.shift)
62
+ # assert_equal(Date.new(2012,10, 16), keys.shift)
63
+ # assert_equal(Date.new(2012,10, 17), keys.shift)
64
+ # assert_equal(Date.new(2012,10, 18), keys.shift)
65
+ # assert_equal(Date.new(2012,10, 25), keys.shift)
66
+ # assert_equal(nil , keys.shift)
67
67
  #
68
- # assert(results[Date.new(2012, 9, 15)].is_a? Array)
69
- # assert(results[Date.new(2012, 9, 15)][0].is_a? Sculd::Plan)
70
- # end
68
+ # assert(results[Date.new(2012, 9, 15)].is_a? Array)
69
+ # assert(results[Date.new(2012, 9, 15)][0].is_a? Sculd::Plan)
70
+ # end
71
71
  #
72
- # def test_show_events
73
- # #it 'should return itemized days and events' do
74
- # #pp @s01
75
- # io = StringIO.new
76
- # today = Date.new(2012, 9, 15)
77
- # @s01.show_events(2, today, io)
78
- # io.rewind
79
- # results = io.readlines
80
- # #pp results
81
- # #assert_equal(9, results.size)
82
- # assert_equal("Events:\n" , results.shift)
83
- # assert_equal("  2012-09-15 Sat \n",
84
- # results.shift)
85
- # assert_equal(" @ schedule a\n" , results.shift)
86
- # assert_equal(" [23:45]@ schedule a'\n" , results.shift)
87
- # assert_equal("\n" , results.shift)
88
- # assert_equal("  2012-09-16 Sun \n",
89
- # results.shift)
90
- # assert_equal(" ! deadline b\n" , results.shift)
91
- # assert_equal(" [23:45]!30 deadline b'\n" , results.shift)
92
- # assert_equal("\n" , results.shift)
93
- # assert_equal(nil , results.shift)
94
- # end
72
+ # def test_show_events
73
+ # #it 'should return itemized days and events' do
74
+ # #pp @s01
75
+ # io = StringIO.new
76
+ # today = Date.new(2012, 9, 15)
77
+ # @s01.show_events(2, today, io)
78
+ # io.rewind
79
+ # results = io.readlines
80
+ # #pp results
81
+ # #assert_equal(9, results.size)
82
+ # assert_equal("Events:\n" , results.shift)
83
+ # assert_equal("  2012-09-15 Sat \n",
84
+ # results.shift)
85
+ # assert_equal(" @ schedule a\n" , results.shift)
86
+ # assert_equal(" [23:45]@ schedule a'\n" , results.shift)
87
+ # assert_equal("\n" , results.shift)
88
+ # assert_equal("  2012-09-16 Sun \n",
89
+ # results.shift)
90
+ # assert_equal(" ! deadline b\n" , results.shift)
91
+ # assert_equal(" [23:45]!30 deadline b'\n" , results.shift)
92
+ # assert_equal("\n" , results.shift)
93
+ # assert_equal(nil , results.shift)
94
+ # end
95
95
  #
96
- # def test_show_tasks
97
- # #it 'should return sorted tasks' do
98
- # io = StringIO.new
99
- # today = Date.new(2012, 9,20)
100
- # @s01.show_tasks(6, today, io)
101
- # io.rewind
102
- # results = io.readlines
103
- # #pp results
104
- # #assert_equal(7, results.size)
105
- # assert_equal("Tasks:\n" , results.shift)
106
- # assert_equal(" [2012-09-16]!30 deadline b'\n", results.shift)
107
- # assert_equal(" [2012-09-16]! deadline b\n" , results.shift)
108
- # assert_equal(" [2012-09-18]+ todo d\n" , results.shift)
109
- # assert_equal(" [2012-09-18]+10 todo d'\n", results.shift)
110
- # assert_equal(" [2012-09-17]- reminder c'\n", results.shift)
111
- # assert_equal(" [2012-09-17]- reminder c\n" , results.shift)
112
- # assert_equal(nil , results.shift)
113
- # end
96
+ # def test_show_tasks
97
+ # #it 'should return sorted tasks' do
98
+ # io = StringIO.new
99
+ # today = Date.new(2012, 9,20)
100
+ # @s01.show_tasks(6, today, io)
101
+ # io.rewind
102
+ # results = io.readlines
103
+ # #pp results
104
+ # #assert_equal(7, results.size)
105
+ # assert_equal("Tasks:\n" , results.shift)
106
+ # assert_equal(" [2012-09-16]!30 deadline b'\n", results.shift)
107
+ # assert_equal(" [2012-09-16]! deadline b\n" , results.shift)
108
+ # assert_equal(" [2012-09-18]+ todo d\n" , results.shift)
109
+ # assert_equal(" [2012-09-18]+10 todo d'\n", results.shift)
110
+ # assert_equal(" [2012-09-17]- reminder c'\n", results.shift)
111
+ # assert_equal(" [2012-09-17]- reminder c\n" , results.shift)
112
+ # assert_equal(nil , results.shift)
113
+ # end
114
114
  end