sculd 0.0.3 → 0.1.0

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.
@@ -1,85 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe Sculd::Plan do # E.g., Klass
4
- context 'Class method' do # 'when stack is empty'
5
- describe '#parse' do # ''
6
- context '[2012-10-23]! deadlineA' do
7
- it 'should return Date, !, ""' do
8
- a, b, c = Sculd::Plan.parse('[2012-10-23]! deadlineA')
9
- a.should == DateTime.new(2012, 10, 23, 0, 0, 0)
10
- b.should == "!"
11
- c.should == ""
12
- end
13
- end
14
-
15
- context '[2012-10-23 01:02:03]@ deadlineA' do
16
- it 'should return Date, @, ""' do
17
- a, b, c = Sculd::Plan.parse('[2012-10-23 01:02:03]@ deadlineA')
18
- a.should == DateTime.new(2012, 10, 23, 1, 2, 3)
19
- b.should == "@"
20
- c.should == ""
21
- end
22
- end
23
-
24
- context 'schedule with correct weekday' do
25
- it 'should return Date, @, ""' do
26
- a, b, c = Sculd::Plan.parse('[2012-11-01 01:02:03(Thu)]@ deadlineA')
27
- a.should == DateTime.new(2012, 11, 01, 1, 2, 3)
28
- b.should == "@"
29
- c.should == ""
30
-
31
- a, b, c = Sculd::Plan.parse('[2012-11-01 01:02:03(th)]@ deadlineA')
32
- a.should == DateTime.new(2012, 11, 01, 1, 2, 3)
33
- b.should == "@"
34
- c.should == ""
35
- end
36
- end
37
-
38
- context 'schedule with wrong weekday' do
39
- it 'should return Date, @, ""' do
40
- io = StringIO.new
41
- lambda{ Sculd::Plan.parse('[2012-11-01 01:02:03(Sun)]@ deadlineA', io)}.should raise_error Sculd::Plan::WeekdayMismatchError
42
-
43
- lambda{ Sculd::Plan.parse('[2012-11-01 01:02:03(abc)]@ deadlineA', io)}.should raise_error Sculd::Plan::NotWeekdayError
44
- end
45
- end
46
-
47
- context '[abc]! deadlineA' do
48
- it 'should raise exception' do
49
- #Sculd::Plan.parse('[abc]! deadlineA')
50
- #fail
51
- lambda{ Sculd::Plan.parse('[abc]! deadlineA')}.should raise_error
52
- end
53
- end
54
-
55
- context '[abc]]! deadlineA' do
56
- it 'should raise exception' do
57
- a, b, c = Sculd::Plan.parse('[2012-01-01]]! deadlineA')
58
- a.should == DateTime.new(2012, 01, 01)
59
- b.should == "]"
60
- c.should == "!"
61
- end
62
- end
63
-
64
- context ' [2012-10-23]! deadlineA with space at head' do
65
- it 'should return Date, !, deadlineA' do
66
- a, b, c = Sculd::Plan.parse(' [2012-10-23]! deadlineA with space at head')
67
- a.should == Date.new(2012, 10, 23)
68
- b.should == "!"
69
- c.should == ""
70
- end
71
- end
72
-
73
- context '[2012-10-23]!10 deadline with option value' do
74
- it 'should return Date, !, deadlineA' do
75
- a, b, c = Sculd::Plan.parse( '[2012-10-23]!10 deadline with option value')
76
- a.should == Date.new(2012, 10, 23)
77
- b.should == "!"
78
- c.should == "10"
79
- end
80
- end
81
-
82
- end
83
- end
84
- end
85
-
@@ -1,38 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe Sculd::Plan::Reminder do # E.g., Klass
4
- context 'Date[2012-10-23], 10, [2012-10-23]- reminderA' do
5
-
6
- before do
7
- date = Date.new(2012, 10, 23)
8
- @r00 = Sculd::Plan::Reminder.new(date, 10, '[2012-10-23]- reminderA')
9
- end
10
-
11
- describe '#priority' do # ''
12
- context '' do
13
- it 'return REMINDER_PRIORITY when the day is today .' do
14
- date = Date.new(2012, 10, 23)
15
- @r00.priority(date).should == 10000
16
- end
17
-
18
- it 'return REMINDER_PRIORITY -1 when the day is yesterday .' do
19
- date = Date.new(2012, 10, 24)
20
- @r00.priority(date).should == 9999
21
- end
22
- end
23
- end
24
-
25
- describe '#events' do # ''
26
- context '' do
27
- it 'return a Sculd::Event instance.' do
28
- result = @r00.events
29
- result.class.should == Array
30
- result.size.should == 1
31
- result[0].class.should == Sculd::Event
32
- result[0].datetime.to_date.should == Date.new(2012, 10, 23)
33
- end
34
- end
35
- end
36
- end
37
- end
38
-
@@ -1,5 +0,0 @@
1
- [2012-09-15]@ schedule a
2
- [2012-09-16]! deadline b
3
- [2012-09-17]- reminder c
4
- [2012-09-18]+ todo d
5
- normal line
@@ -1,30 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe Sculd::Plan::Schedule do # E.g., Klass
4
- context 'normal' do # 'when stack is empty'
5
- before do
6
- date = Date.new(2012, 10, 15)
7
- @s00 = Sculd::Plan::Schedule.new(date, 0, "[2012-10-15]@ scheduleA")
8
- end
9
-
10
- describe '#priority' do # ''
11
- context '' do
12
- it 'should return 0' do
13
- @s00.priority.should == 0
14
- end
15
- end
16
- end
17
-
18
- describe '#events' do # ''
19
- context '' do
20
- it 'should return Array of 1 item' do
21
- @s00.events.class == Array
22
- @s00.events.size == 1
23
- @s00.events[0].date == Date.new(2012, 10, 15)
24
- end
25
- end
26
- end
27
-
28
- end
29
- end
30
-
@@ -1,4 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe "Sculd" do
4
- end
@@ -1,12 +0,0 @@
1
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
- $LOAD_PATH.unshift(File.dirname(__FILE__))
3
- require 'rspec'
4
- require 'sculd'
5
-
6
- # Requires supporting files with custom matchers and macros, etc,
7
- # in ./support/ and its subdirectories.
8
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
-
10
- RSpec.configure do |config|
11
-
12
- end
@@ -1,48 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe Sculd::Plan::Todo do # E.g., Klass
4
- context 'Date[2012-10-15], 10, [2012-10-15]+10 todoA' do
5
-
6
- before do
7
- today = Date.new(2012, 10, 15)
8
- @t00 = Sculd::Plan::Todo.new(today, 10, '[2012-10-15]+10 todoA')
9
- end
10
-
11
- describe '#priority' do # ''
12
- context '' do
13
-
14
- it 'return 0 before the period.' do
15
- today = Date.new(2012, 10, 1)
16
- @t00.priority(today).should == 0
17
- end
18
-
19
- it 'return REMINDER_PRIORITY when the day is today.' do
20
- today = Date.new(2012, 10, 15)
21
- @t00.priority(today).should == 10000
22
- end
23
-
24
- it 'return values between REMINDER_PRIORITY and DEADLINE_PRIORITY during the period.' do
25
- today = Date.new(2012, 10, 20)
26
- @t00.priority(today).should == 15000
27
- end
28
-
29
- it 'return DEADLINE_PRIORITY when the day is past.' do
30
- today = Date.new(2012, 10, 30)
31
- @t00.priority(today).should == 20000
32
- end
33
-
34
- end
35
- end
36
-
37
- describe "#events" do
38
- context '' do
39
- it '' do
40
- @t00.events.size.should == 2
41
- @t00.events[0].date.should == Date.new(2012, 10, 15)
42
- @t00.events[1].date.should == Date.new(2012, 10, 25)
43
- end
44
- end
45
- end
46
- end
47
- end
48
-