keikokuc 0.2 → 0.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.
@@ -78,6 +78,13 @@ class Keikokuc::NotificationList
78
78
  @notifications.each { |n| yield n }
79
79
  end
80
80
 
81
+ # Public: wether there are no notifications
82
+ #
83
+ # Returns a Boolean set to true if there is at least one notification
84
+ def empty?
85
+ self.size.zero?
86
+ end
87
+
81
88
  private
82
89
  def client # :nodoc:
83
90
  @client ||= Client.new(user: user, password: password)
@@ -1,3 +1,3 @@
1
1
  module Keikokuc
2
- VERSION = "0.2"
2
+ VERSION = "0.3"
3
3
  end
@@ -87,6 +87,20 @@ module Keikokuc
87
87
 
88
88
  expect(list.read_all).to be_false
89
89
  end
90
+ end
91
+
92
+ describe NotificationList, '#empty?' do
93
+ include_context 'specs with a fake client'
94
+ include_context 'with user notifications'
95
+ it 'is true when there are no notifications' do
96
+ fake_client.stub(get_notifications: [user_notifications, nil])
97
+ notification_list = build(:notification_list, client: fake_client)
98
+
99
+ expect(notification_list.empty?).to be_true
90
100
 
101
+ notification_list.fetch
102
+
103
+ expect(notification_list.empty?).to be_false
104
+ end
91
105
  end
92
106
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: keikokuc
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.2'
4
+ version: '0.3'
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-10-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rest-client
16
- requirement: &70251215460580 !ruby/object:Gem::Requirement
16
+ requirement: &70216912760980 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70251215460580
24
+ version_requirements: *70216912760980
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: yajl-ruby
27
- requirement: &70251215460160 !ruby/object:Gem::Requirement
27
+ requirement: &70216912760560 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70251215460160
35
+ version_requirements: *70216912760560
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rspec
38
- requirement: &70251215459720 !ruby/object:Gem::Requirement
38
+ requirement: &70216912760120 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *70251215459720
46
+ version_requirements: *70216912760120
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: factory_girl
49
- requirement: &70251215459300 !ruby/object:Gem::Requirement
49
+ requirement: &70216912759700 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0'
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *70251215459300
57
+ version_requirements: *70216912759700
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: sham_rack
60
- requirement: &70251215458860 !ruby/object:Gem::Requirement
60
+ requirement: &70216912759260 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ! '>='
@@ -65,7 +65,7 @@ dependencies:
65
65
  version: '0'
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *70251215458860
68
+ version_requirements: *70216912759260
69
69
  description: Keikoku client
70
70
  email:
71
71
  - harold.gimenez@gmail.com