forked from id774/automaticruby
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtumblr_spec.rb
More file actions
74 lines (62 loc) · 1.63 KB
/
tumblr_spec.rb
File metadata and controls
74 lines (62 loc) · 1.63 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
72
73
74
# -*- coding: utf-8 -*-
# Name:: Automatic::Plugin::Subscription::Tumblr
# Author:: 774 <http://id774.net>
# Created:: Oct 16, 2012
# 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/tumblr'
describe Automatic::Plugin::SubscriptionTumblr do
context "with empty URLs" do
subject {
Automatic::Plugin::SubscriptionTumblr.new(
{ 'urls' => [] }
)
}
its(:run) { should be_empty }
end
context "with URLs whose invalid URL" do
subject {
Automatic::Plugin::SubscriptionTumblr.new(
{ 'urls' => ["invalid_url"] }
)
}
its(:run) { should be_empty }
end
context "with URLs whose valid URL" do
subject {
Automatic::Plugin::SubscriptionTumblr.new(
{ 'urls' => [
"http://reblog.id774.net"]
}
)
}
its(:run) { should have(1).item }
end
context "with URLs and Pages" do
subject {
Automatic::Plugin::SubscriptionTumblr.new(
{ 'urls' => [
"http://reblog.id774.net"],
'pages' => 3,
'interval' => 5,
'retry' => 5
}
)
}
its(:run) { should have(3).item }
end
context "with retry to URLs whose invalid URL" do
subject {
Automatic::Plugin::SubscriptionTumblr.new(
{ 'urls' => ["invalid_url"],
'pages' => 3,
'interval' => 1,
'retry' => 2
}
)
}
its(:run) { should be_empty }
end
end