forked from id774/automaticruby
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfeed_spec.rb
More file actions
71 lines (59 loc) · 1.65 KB
/
feed_spec.rb
File metadata and controls
71 lines (59 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding: utf-8 -*-
# Name:: Automatic::Plugin::Subscription::Feed
# Author:: 774 <http://id774.net>
# Updated:: Feb 8, 2013
# Copyright:: Copyright (c) 2012-2013 Automatic Ruby Developers.
# License:: Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0.
require File.expand_path(File.dirname(__FILE__) + '../../../spec_helper')
require 'subscription/feed'
describe Automatic::Plugin::SubscriptionFeed do
context "with empty feeds" do
subject {
Automatic::Plugin::SubscriptionFeed.new(
{ 'feeds' => [] }
)
}
its(:run) { should be_empty }
end
context "with feeds whose invalid URL" do
subject {
Automatic::Plugin::SubscriptionFeed.new(
{ 'feeds' => ["invalid_url"] }
)
}
its(:run) { should be_empty }
end
context "with feeds whose valid URL" do
subject {
Automatic::Plugin::SubscriptionFeed.new(
{ 'feeds' => [
"https://github.com/automaticruby/automaticruby/commits/master.atom"]
}
)
}
its(:run) { should have(1).feed }
end
context "with retry to feeds whose valid URL" do
subject {
Automatic::Plugin::SubscriptionFeed.new(
{ 'feeds' => [
"https://github.com/automaticruby/automaticruby/commits/master.atom"],
'retry' => 3,
'interval' => 5
}
)
}
its(:run) { should have(1).feed }
end
context "with retry to feeds whose invalid URL" do
subject {
Automatic::Plugin::SubscriptionFeed.new(
{ 'feeds' => ["invalid_url"],
'retry' => 1,
'interval' => 1
}
)
}
its(:run) { should be_empty }
end
end