twitter 5.0.0 → 5.4.1

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.
Files changed (145) hide show
  1. data/.yardopts +4 -0
  2. data/CHANGELOG.md +47 -0
  3. data/CONTRIBUTING.md +5 -5
  4. data/README.md +57 -56
  5. data/Rakefile +26 -5
  6. data/lib/twitter/arguments.rb +1 -2
  7. data/lib/twitter/base.rb +15 -18
  8. data/lib/twitter/basic_user.rb +3 -3
  9. data/lib/twitter/client.rb +9 -10
  10. data/lib/twitter/configuration.rb +5 -5
  11. data/lib/twitter/creatable.rb +0 -1
  12. data/lib/twitter/cursor.rb +9 -36
  13. data/lib/twitter/direct_message.rb +1 -1
  14. data/lib/twitter/entity/uri.rb +2 -2
  15. data/lib/twitter/enumerable.rb +10 -1
  16. data/lib/twitter/error/already_favorited.rb +1 -1
  17. data/lib/twitter/error/already_posted.rb +1 -1
  18. data/lib/twitter/error/already_retweeted.rb +1 -1
  19. data/lib/twitter/error/too_many_requests.rb +2 -2
  20. data/lib/twitter/error.rb +6 -6
  21. data/lib/twitter/factory.rb +2 -6
  22. data/lib/twitter/geo/point.rb +3 -5
  23. data/lib/twitter/geo.rb +1 -1
  24. data/lib/twitter/geo_factory.rb +1 -5
  25. data/lib/twitter/geo_results.rb +5 -8
  26. data/lib/twitter/identity.rb +1 -2
  27. data/lib/twitter/list.rb +10 -11
  28. data/lib/twitter/media/photo.rb +1 -2
  29. data/lib/twitter/media_factory.rb +1 -5
  30. data/lib/twitter/null_object.rb +4 -6
  31. data/lib/twitter/oembed.rb +1 -1
  32. data/lib/twitter/place.rb +17 -6
  33. data/lib/twitter/profile_banner.rb +1 -3
  34. data/lib/twitter/rate_limit.rb +1 -3
  35. data/lib/twitter/relationship.rb +1 -2
  36. data/lib/twitter/rest/api/direct_messages.rb +15 -15
  37. data/lib/twitter/rest/api/favorites.rb +15 -15
  38. data/lib/twitter/rest/api/friends_and_followers.rb +37 -42
  39. data/lib/twitter/rest/api/help.rb +8 -9
  40. data/lib/twitter/rest/api/lists.rb +69 -69
  41. data/lib/twitter/rest/api/oauth.rb +3 -4
  42. data/lib/twitter/rest/api/places_and_geo.rb +9 -10
  43. data/lib/twitter/rest/api/saved_searches.rb +8 -8
  44. data/lib/twitter/rest/api/search.rb +10 -2
  45. data/lib/twitter/rest/api/spam_reporting.rb +1 -2
  46. data/lib/twitter/rest/api/suggested_users.rb +4 -5
  47. data/lib/twitter/rest/api/timelines.rb +17 -18
  48. data/lib/twitter/rest/api/trends.rb +10 -11
  49. data/lib/twitter/rest/api/tweets.rb +31 -20
  50. data/lib/twitter/rest/api/undocumented.rb +6 -7
  51. data/lib/twitter/rest/api/users.rb +53 -54
  52. data/lib/twitter/rest/api/utils.rb +28 -34
  53. data/lib/twitter/rest/client.rb +8 -9
  54. data/lib/twitter/rest/request/multipart_with_file.rb +7 -5
  55. data/lib/twitter/rest/response/parse_error_json.rb +0 -2
  56. data/lib/twitter/rest/response/parse_json.rb +2 -2
  57. data/lib/twitter/rest/response/raise_error.rb +1 -3
  58. data/lib/twitter/search_results.rb +38 -56
  59. data/lib/twitter/settings.rb +2 -2
  60. data/lib/twitter/size.rb +2 -2
  61. data/lib/twitter/source_user.rb +1 -1
  62. data/lib/twitter/streaming/client.rb +69 -18
  63. data/lib/twitter/streaming/connection.rb +1 -3
  64. data/lib/twitter/streaming/deleted_tweet.rb +8 -0
  65. data/lib/twitter/streaming/event.rb +8 -8
  66. data/lib/twitter/streaming/friend_list.rb +2 -9
  67. data/lib/twitter/streaming/message_parser.rb +13 -3
  68. data/lib/twitter/streaming/response.rb +0 -2
  69. data/lib/twitter/streaming/stall_warning.rb +7 -0
  70. data/lib/twitter/suggestion.rb +0 -1
  71. data/lib/twitter/token.rb +2 -3
  72. data/lib/twitter/trend_results.rb +5 -8
  73. data/lib/twitter/tweet.rb +17 -18
  74. data/lib/twitter/user.rb +33 -35
  75. data/lib/twitter/utils.rb +14 -0
  76. data/lib/twitter/version.rb +2 -5
  77. data/lib/twitter.rb +1 -1
  78. data/spec/fixtures/forbidden.json +1 -0
  79. data/spec/fixtures/search.json +1 -1
  80. data/spec/fixtures/search2.json +1 -0
  81. data/spec/fixtures/track_streaming_user.json +2 -1
  82. data/spec/helper.rb +6 -2
  83. data/spec/twitter/base_spec.rb +9 -9
  84. data/spec/twitter/basic_user_spec.rb +6 -6
  85. data/spec/twitter/configuration_spec.rb +4 -4
  86. data/spec/twitter/cursor_spec.rb +13 -51
  87. data/spec/twitter/direct_message_spec.rb +36 -36
  88. data/spec/twitter/entity/uri_spec.rb +29 -29
  89. data/spec/twitter/error_spec.rb +21 -21
  90. data/spec/twitter/geo/point_spec.rb +9 -9
  91. data/spec/twitter/geo/polygon_spec.rb +5 -5
  92. data/spec/twitter/geo_factory_spec.rb +7 -7
  93. data/spec/twitter/geo_results_spec.rb +11 -11
  94. data/spec/twitter/geo_spec.rb +5 -5
  95. data/spec/twitter/identifiable_spec.rb +9 -9
  96. data/spec/twitter/list_spec.rb +38 -38
  97. data/spec/twitter/media/photo_spec.rb +58 -58
  98. data/spec/twitter/media_factory_spec.rb +5 -5
  99. data/spec/twitter/null_object_spec.rb +6 -6
  100. data/spec/twitter/oembed_spec.rb +68 -68
  101. data/spec/twitter/place_spec.rb +91 -62
  102. data/spec/twitter/profile_banner_spec.rb +3 -3
  103. data/spec/twitter/rate_limit_spec.rb +18 -18
  104. data/spec/twitter/relationship_spec.rb +16 -16
  105. data/spec/twitter/rest/api/direct_messages_spec.rb +61 -61
  106. data/spec/twitter/rest/api/favorites_spec.rb +93 -93
  107. data/spec/twitter/rest/api/friends_and_followers_spec.rb +357 -349
  108. data/spec/twitter/rest/api/geo_spec.rb +33 -33
  109. data/spec/twitter/rest/api/help_spec.rb +24 -24
  110. data/spec/twitter/rest/api/lists_spec.rb +487 -487
  111. data/spec/twitter/rest/api/oauth_spec.rb +30 -30
  112. data/spec/twitter/rest/api/saved_searches_spec.rb +50 -40
  113. data/spec/twitter/rest/api/search_spec.rb +27 -26
  114. data/spec/twitter/rest/api/spam_reporting_spec.rb +9 -9
  115. data/spec/twitter/rest/api/suggested_users_spec.rb +23 -23
  116. data/spec/twitter/rest/api/timelines_spec.rb +58 -58
  117. data/spec/twitter/rest/api/trends_spec.rb +26 -26
  118. data/spec/twitter/rest/api/tweets_spec.rb +304 -266
  119. data/spec/twitter/rest/api/undocumented_spec.rb +51 -51
  120. data/spec/twitter/rest/api/users_spec.rb +360 -360
  121. data/spec/twitter/rest/client_spec.rb +99 -103
  122. data/spec/twitter/saved_search_spec.rb +16 -16
  123. data/spec/twitter/search_results_spec.rb +14 -110
  124. data/spec/twitter/settings_spec.rb +8 -8
  125. data/spec/twitter/size_spec.rb +5 -5
  126. data/spec/twitter/source_user_spec.rb +6 -6
  127. data/spec/twitter/streaming/client_spec.rb +85 -54
  128. data/spec/twitter/streaming/deleted_tweet_spec.rb +23 -0
  129. data/spec/twitter/streaming/event_spec.rb +20 -22
  130. data/spec/twitter/streaming/friend_list_spec.rb +11 -0
  131. data/spec/twitter/streaming/message_parser_spec.rb +54 -0
  132. data/spec/twitter/suggestion_spec.rb +11 -11
  133. data/spec/twitter/target_user_spec.rb +6 -6
  134. data/spec/twitter/token_spec.rb +4 -4
  135. data/spec/twitter/trend_results_spec.rb +30 -30
  136. data/spec/twitter/trend_spec.rb +21 -21
  137. data/spec/twitter/tweet_spec.rb +178 -164
  138. data/spec/twitter/user_spec.rb +190 -190
  139. data/twitter.gemspec +6 -6
  140. data.tar.gz.sig +0 -0
  141. metadata +44 -16
  142. metadata.gz.sig +0 -0
  143. data/lib/twitter/core_ext/enumerable.rb +0 -10
  144. data/lib/twitter/core_ext/kernel.rb +0 -10
  145. data/spec/twitter_spec.rb +0 -0
@@ -3,70 +3,70 @@ require 'helper'
3
3
 
4
4
  describe Twitter::Entity::URI do
5
5
 
6
- describe "#display_uri" do
7
- it "returns a String when the display_url is set" do
8
- uri = Twitter::Entity::URI.new(:display_url => "example.com/expanded…")
6
+ describe '#display_uri' do
7
+ it 'returns a String when the display_url is set' do
8
+ uri = Twitter::Entity::URI.new(:display_url => 'example.com/expanded…')
9
9
  expect(uri.display_uri).to be_a String
10
- expect(uri.display_uri).to eq("example.com/expanded…")
10
+ expect(uri.display_uri).to eq('example.com/expanded…')
11
11
  end
12
- it "returns nil when the display_url is not set" do
12
+ it 'returns nil when the display_url is not set' do
13
13
  uri = Twitter::Entity::URI.new
14
14
  expect(uri.display_uri).to be_nil
15
15
  end
16
16
  end
17
17
 
18
- describe "#display_uri?" do
19
- it "returns true when the display_url is set" do
20
- uri = Twitter::Entity::URI.new(:display_url => "example.com/expanded…")
18
+ describe '#display_uri?' do
19
+ it 'returns true when the display_url is set' do
20
+ uri = Twitter::Entity::URI.new(:display_url => 'example.com/expanded…')
21
21
  expect(uri.display_uri?).to be true
22
22
  end
23
- it "returns false when the display_url is not set" do
23
+ it 'returns false when the display_url is not set' do
24
24
  uri = Twitter::Entity::URI.new
25
25
  expect(uri.display_uri?).to be false
26
26
  end
27
27
  end
28
28
 
29
- describe "#expanded_uri" do
30
- it "returns a URI when the expanded_url is set" do
31
- uri = Twitter::Entity::URI.new(:expanded_url => "https://github.com/sferik")
32
- expect(uri.expanded_uri).to be_a URI
33
- expect(uri.expanded_uri.to_s).to eq("https://github.com/sferik")
29
+ describe '#expanded_uri' do
30
+ it 'returns a URI when the expanded_url is set' do
31
+ uri = Twitter::Entity::URI.new(:expanded_url => 'https://github.com/sferik')
32
+ expect(uri.expanded_uri).to be_a Addressable::URI
33
+ expect(uri.expanded_uri.to_s).to eq('https://github.com/sferik')
34
34
  end
35
- it "returns nil when the expanded_url is not set" do
35
+ it 'returns nil when the expanded_url is not set' do
36
36
  uri = Twitter::Entity::URI.new
37
37
  expect(uri.expanded_uri).to be_nil
38
38
  end
39
39
  end
40
40
 
41
- describe "#expanded_uri?" do
42
- it "returns true when the expanded_url is set" do
43
- uri = Twitter::Entity::URI.new(:expanded_url => "https://github.com/sferik")
41
+ describe '#expanded_uri?' do
42
+ it 'returns true when the expanded_url is set' do
43
+ uri = Twitter::Entity::URI.new(:expanded_url => 'https://github.com/sferik')
44
44
  expect(uri.expanded_uri?).to be true
45
45
  end
46
- it "returns false when the expanded_url is not set" do
46
+ it 'returns false when the expanded_url is not set' do
47
47
  uri = Twitter::Entity::URI.new
48
48
  expect(uri.expanded_uri?).to be false
49
49
  end
50
50
  end
51
51
 
52
- describe "#uri" do
53
- it "returns a URI when the url is set" do
54
- uri = Twitter::Entity::URI.new(:url => "https://github.com/sferik")
55
- expect(uri.uri).to be_a URI
56
- expect(uri.uri.to_s).to eq("https://github.com/sferik")
52
+ describe '#uri' do
53
+ it 'returns a URI when the url is set' do
54
+ uri = Twitter::Entity::URI.new(:url => 'https://github.com/sferik')
55
+ expect(uri.uri).to be_a Addressable::URI
56
+ expect(uri.uri.to_s).to eq('https://github.com/sferik')
57
57
  end
58
- it "returns nil when the url is not set" do
58
+ it 'returns nil when the url is not set' do
59
59
  uri = Twitter::Entity::URI.new
60
60
  expect(uri.uri).to be_nil
61
61
  end
62
62
  end
63
63
 
64
- describe "#uri?" do
65
- it "returns true when the url is set" do
66
- uri = Twitter::Entity::URI.new(:url => "https://github.com/sferik")
64
+ describe '#uri?' do
65
+ it 'returns true when the url is set' do
66
+ uri = Twitter::Entity::URI.new(:url => 'https://github.com/sferik')
67
67
  expect(uri.uri?).to be true
68
68
  end
69
- it "returns false when the url is not set" do
69
+ it 'returns false when the url is not set' do
70
70
  uri = Twitter::Entity::URI.new
71
71
  expect(uri.uri?).to be false
72
72
  end
@@ -3,61 +3,61 @@ require 'helper'
3
3
  describe Twitter::Error do
4
4
 
5
5
  before do
6
- @client = Twitter::REST::Client.new(:consumer_key => "CK", :consumer_secret => "CS", :access_token => "AT", :access_token_secret => "AS")
6
+ @client = Twitter::REST::Client.new(:consumer_key => 'CK', :consumer_secret => 'CS', :access_token => 'AT', :access_token_secret => 'AS')
7
7
  end
8
8
 
9
- describe "#message" do
10
- it "returns the message of the wrapped exception" do
11
- error = Twitter::Error.new(Faraday::Error::ClientError.new("Oops"))
12
- expect(error.message).to eq("Oops")
9
+ describe '#message' do
10
+ it 'returns the message of the wrapped exception' do
11
+ error = Twitter::Error.new(Faraday::Error::ClientError.new('Oops'))
12
+ expect(error.message).to eq('Oops')
13
13
  end
14
14
  end
15
15
 
16
- describe "#rate_limit" do
17
- it "returns the wrapped exception" do
18
- error = Twitter::Error.new(Faraday::Error::ClientError.new("Oops"))
16
+ describe '#rate_limit' do
17
+ it 'returns the wrapped exception' do
18
+ error = Twitter::Error.new(Faraday::Error::ClientError.new('Oops'))
19
19
  expect(error.rate_limit).to be_a Twitter::RateLimit
20
20
  end
21
21
  end
22
22
 
23
- describe "#wrapped_exception" do
24
- it "returns the wrapped exception" do
25
- error = Twitter::Error.new(Faraday::Error::ClientError.new("Oops"))
23
+ describe '#wrapped_exception' do
24
+ it 'returns the wrapped exception' do
25
+ error = Twitter::Error.new(Faraday::Error::ClientError.new('Oops'))
26
26
  expect(error.wrapped_exception.class).to eq(Faraday::Error::ClientError)
27
27
  end
28
28
  end
29
29
 
30
30
  Twitter::Error.errors.each do |status, exception|
31
31
 
32
- [nil, "error", "errors"].each do |body|
32
+ [nil, 'error', 'errors'].each do |body|
33
33
  context "when HTTP status is #{status} and body is #{body.inspect}" do
34
34
  before do
35
35
  body_message = '{"' + body + '":"Client Error"}' unless body.nil?
36
- stub_get("/1.1/statuses/user_timeline.json").with(:query => {:screen_name => "sferik"}).to_return(:status => status, :body => body_message)
36
+ stub_get('/1.1/statuses/user_timeline.json').with(:query => {:screen_name => 'sferik'}).to_return(:status => status, :body => body_message)
37
37
  end
38
38
  it "raises #{exception.name}" do
39
- expect{@client.user_timeline("sferik")}.to raise_error exception
39
+ expect { @client.user_timeline('sferik') }.to raise_error exception
40
40
  end
41
41
  end
42
42
  end
43
43
 
44
44
  context "when HTTP status is #{status} and body is errors" do
45
- context "when errors is an array of hashes" do
46
- context "when error code is nil" do
45
+ context 'when errors is an array of hashes' do
46
+ context 'when error code is nil' do
47
47
  before do
48
48
  body_message = '{"errors":[{"message":"Client Error"}]}'
49
- stub_get("/1.1/statuses/user_timeline.json").with(:query => {:screen_name => "sferik"}).to_return(:status => status, :body => body_message)
49
+ stub_get('/1.1/statuses/user_timeline.json').with(:query => {:screen_name => 'sferik'}).to_return(:status => status, :body => body_message)
50
50
  end
51
51
  it "raises #{exception.name}" do
52
- expect{@client.user_timeline("sferik")}.to raise_error{|error| expect(error.code).to be_nil}
52
+ expect { @client.user_timeline('sferik') }.to raise_error { |error| expect(error.code).to be_nil }
53
53
  end
54
- context "when error code is 187" do
54
+ context 'when error code is 187' do
55
55
  before do
56
56
  body_message = '{"errors":[{"message":"Client Error","code":187}]}'
57
- stub_get("/1.1/statuses/user_timeline.json").with(:query => {:screen_name => "sferik"}).to_return(:status => status, :body => body_message)
57
+ stub_get('/1.1/statuses/user_timeline.json').with(:query => {:screen_name => 'sferik'}).to_return(:status => status, :body => body_message)
58
58
  end
59
59
  it "raises #{exception.name}" do
60
- expect{@client.user_timeline("sferik")}.to raise_error{|error| expect(error.code).to eq(187)}
60
+ expect { @client.user_timeline('sferik') }.to raise_error { |error| expect(error.code).to eq(187) }
61
61
  end
62
62
  end
63
63
  end
@@ -6,34 +6,34 @@ describe Twitter::Geo::Point do
6
6
  @point = Twitter::Geo::Point.new(:coordinates => [-122.399983, 37.788299])
7
7
  end
8
8
 
9
- describe "#==" do
10
- it "returns true for empty objects" do
9
+ describe '#==' do
10
+ it 'returns true for empty objects' do
11
11
  point = Twitter::Geo::Point.new
12
12
  other = Twitter::Geo::Point.new
13
13
  expect(point == other).to be true
14
14
  end
15
- it "returns true when objects coordinates are the same" do
15
+ it 'returns true when objects coordinates are the same' do
16
16
  other = Twitter::Geo::Point.new(:coordinates => [-122.399983, 37.788299])
17
17
  expect(@point == other).to be true
18
18
  end
19
- it "returns false when objects coordinates are different" do
19
+ it 'returns false when objects coordinates are different' do
20
20
  other = Twitter::Geo::Point.new(:coordinates => [37.788299, -122.399983])
21
21
  expect(@point == other).to be false
22
22
  end
23
- it "returns false when classes are different" do
23
+ it 'returns false when classes are different' do
24
24
  other = Twitter::Geo.new(:coordinates => [-122.399983, 37.788299])
25
25
  expect(@point == other).to be false
26
26
  end
27
27
  end
28
28
 
29
- describe "#latitude" do
30
- it "returns the latitude" do
29
+ describe '#latitude' do
30
+ it 'returns the latitude' do
31
31
  expect(@point.latitude).to eq(-122.399983)
32
32
  end
33
33
  end
34
34
 
35
- describe "#longitude" do
36
- it "returns the longitude" do
35
+ describe '#longitude' do
36
+ it 'returns the longitude' do
37
37
  expect(@point.longitude).to eq(37.788299)
38
38
  end
39
39
  end
@@ -6,21 +6,21 @@ describe Twitter::Geo::Polygon do
6
6
  @polygon = Twitter::Geo::Polygon.new(:coordinates => [[[-122.40348192, 37.77752898], [-122.387436, 37.77752898], [-122.387436, 37.79448597], [-122.40348192, 37.79448597]]])
7
7
  end
8
8
 
9
- describe "#==" do
10
- it "returns true for empty objects" do
9
+ describe '#==' do
10
+ it 'returns true for empty objects' do
11
11
  polygon = Twitter::Geo::Polygon.new
12
12
  other = Twitter::Geo::Polygon.new
13
13
  expect(polygon == other).to be true
14
14
  end
15
- it "returns true when objects coordinates are the same" do
15
+ it 'returns true when objects coordinates are the same' do
16
16
  other = Twitter::Geo::Polygon.new(:coordinates => [[[-122.40348192, 37.77752898], [-122.387436, 37.77752898], [-122.387436, 37.79448597], [-122.40348192, 37.79448597]]])
17
17
  expect(@polygon == other).to be true
18
18
  end
19
- it "returns false when objects coordinates are different" do
19
+ it 'returns false when objects coordinates are different' do
20
20
  other = Twitter::Geo::Polygon.new(:coordinates => [[[37.77752898, -122.40348192], [37.77752898, -122.387436], [37.79448597, -122.387436], [37.79448597, -122.40348192]]])
21
21
  expect(@polygon == other).to be false
22
22
  end
23
- it "returns false when classes are different" do
23
+ it 'returns false when classes are different' do
24
24
  other = Twitter::Geo.new(:coordinates => [[[-122.40348192, 37.77752898], [-122.387436, 37.77752898], [-122.387436, 37.79448597], [-122.40348192, 37.79448597]]])
25
25
  expect(@polygon == other).to be false
26
26
  end
@@ -2,17 +2,17 @@ require 'helper'
2
2
 
3
3
  describe Twitter::GeoFactory do
4
4
 
5
- describe ".new" do
6
- it "generates a Point" do
7
- geo = Twitter::GeoFactory.new(:type => "Point")
5
+ describe '.new' do
6
+ it 'generates a Point' do
7
+ geo = Twitter::GeoFactory.new(:type => 'Point')
8
8
  expect(geo).to be_a Twitter::Geo::Point
9
9
  end
10
- it "generates a Polygon" do
11
- geo = Twitter::GeoFactory.new(:type => "Polygon")
10
+ it 'generates a Polygon' do
11
+ geo = Twitter::GeoFactory.new(:type => 'Polygon')
12
12
  expect(geo).to be_a Twitter::Geo::Polygon
13
13
  end
14
- it "raises an IndexError when type is not specified" do
15
- expect{Twitter::GeoFactory.new}.to raise_error IndexError
14
+ it 'raises an IndexError when type is not specified' do
15
+ expect { Twitter::GeoFactory.new }.to raise_error IndexError
16
16
  end
17
17
  end
18
18
 
@@ -2,31 +2,31 @@ require 'helper'
2
2
 
3
3
  describe Twitter::GeoResults do
4
4
 
5
- describe "#each" do
5
+ describe '#each' do
6
6
  before do
7
7
  @geo_results = Twitter::GeoResults.new(:result => {:places => [{:id => 1}, {:id => 2}, {:id => 3}, {:id => 4}, {:id => 5}, {:id => 6}]})
8
8
  end
9
- it "iterates" do
9
+ it 'iterates' do
10
10
  count = 0
11
- @geo_results.each{count += 1}
11
+ @geo_results.each { count += 1 }
12
12
  expect(count).to eq(6)
13
13
  end
14
- context "with start" do
15
- it "iterates" do
14
+ context 'with start' do
15
+ it 'iterates' do
16
16
  count = 0
17
- @geo_results.each(5){count += 1}
17
+ @geo_results.each(5) { count += 1 }
18
18
  expect(count).to eq(1)
19
19
  end
20
20
  end
21
21
  end
22
22
 
23
- describe "#token" do
24
- it "returns a String when token is set" do
25
- geo_results = Twitter::GeoResults.new(:result => {}, :token => "abc123")
23
+ describe '#token' do
24
+ it 'returns a String when token is set' do
25
+ geo_results = Twitter::GeoResults.new(:result => {}, :token => 'abc123')
26
26
  expect(geo_results.token).to be_a String
27
- expect(geo_results.token).to eq("abc123")
27
+ expect(geo_results.token).to eq('abc123')
28
28
  end
29
- it "returns nil when token is not set" do
29
+ it 'returns nil when token is not set' do
30
30
  geo_results = Twitter::GeoResults.new(:result => {})
31
31
  expect(geo_results.token).to be_nil
32
32
  end
@@ -6,21 +6,21 @@ describe Twitter::Geo do
6
6
  @geo = Twitter::Geo.new(:coordinates => [[[-122.40348192, 37.77752898], [-122.387436, 37.77752898], [-122.387436, 37.79448597], [-122.40348192, 37.79448597]]])
7
7
  end
8
8
 
9
- describe "#==" do
10
- it "returns true for empty objects" do
9
+ describe '#==' do
10
+ it 'returns true for empty objects' do
11
11
  geo = Twitter::Geo.new
12
12
  other = Twitter::Geo.new
13
13
  expect(geo == other).to be true
14
14
  end
15
- it "returns true when objects coordinates are the same" do
15
+ it 'returns true when objects coordinates are the same' do
16
16
  other = Twitter::Geo.new(:coordinates => [[[-122.40348192, 37.77752898], [-122.387436, 37.77752898], [-122.387436, 37.79448597], [-122.40348192, 37.79448597]]])
17
17
  expect(@geo == other).to be true
18
18
  end
19
- it "returns false when objects coordinates are different" do
19
+ it 'returns false when objects coordinates are different' do
20
20
  other = Twitter::Geo.new(:coordinates => [[[37.77752898, -122.40348192], [37.77752898, -122.387436], [37.79448597, -122.387436], [37.79448597, -122.40348192]]])
21
21
  expect(@geo == other).to be false
22
22
  end
23
- it "returns true when classes are different" do
23
+ it 'returns true when classes are different' do
24
24
  other = Twitter::Geo::Polygon.new(:coordinates => [[[-122.40348192, 37.77752898], [-122.387436, 37.77752898], [-122.387436, 37.79448597], [-122.40348192, 37.79448597]]])
25
25
  expect(@geo == other).to be true
26
26
  end
@@ -2,24 +2,24 @@ require 'helper'
2
2
 
3
3
  describe Twitter::Identity do
4
4
 
5
- describe "#initialize" do
6
- it "raises an IndexError when id is not specified" do
7
- expect{Twitter::Identity.new}.to raise_error IndexError
5
+ describe '#initialize' do
6
+ it 'raises an IndexError when id is not specified' do
7
+ expect { Twitter::Identity.new }.to raise_error IndexError
8
8
  end
9
9
  end
10
10
 
11
- describe "#==" do
12
- it "returns true when objects IDs are the same" do
13
- one = Twitter::Identity.new(:id => 1, :screen_name => "sferik")
14
- two = Twitter::Identity.new(:id => 1, :screen_name => "garybernhardt")
11
+ describe '#==' do
12
+ it 'returns true when objects IDs are the same' do
13
+ one = Twitter::Identity.new(:id => 1, :screen_name => 'sferik')
14
+ two = Twitter::Identity.new(:id => 1, :screen_name => 'garybernhardt')
15
15
  expect(one == two).to be true
16
16
  end
17
- it "returns false when objects IDs are different" do
17
+ it 'returns false when objects IDs are different' do
18
18
  one = Twitter::Identity.new(:id => 1)
19
19
  two = Twitter::Identity.new(:id => 2)
20
20
  expect(one == two).to be false
21
21
  end
22
- it "returns false when classes are different" do
22
+ it 'returns false when classes are different' do
23
23
  one = Twitter::Identity.new(:id => 1)
24
24
  two = Twitter::Base.new(:id => 1)
25
25
  expect(one == two).to be false
@@ -2,85 +2,85 @@ require 'helper'
2
2
 
3
3
  describe Twitter::List do
4
4
 
5
- describe "#==" do
6
- it "returns true when objects IDs are the same" do
7
- list = Twitter::List.new(:id => 1, :slug => "foo")
8
- other = Twitter::List.new(:id => 1, :slug => "bar")
5
+ describe '#==' do
6
+ it 'returns true when objects IDs are the same' do
7
+ list = Twitter::List.new(:id => 1, :slug => 'foo')
8
+ other = Twitter::List.new(:id => 1, :slug => 'bar')
9
9
  expect(list == other).to be true
10
10
  end
11
- it "returns false when objects IDs are different" do
11
+ it 'returns false when objects IDs are different' do
12
12
  list = Twitter::List.new(:id => 1)
13
13
  other = Twitter::List.new(:id => 2)
14
14
  expect(list == other).to be false
15
15
  end
16
- it "returns false when classes are different" do
16
+ it 'returns false when classes are different' do
17
17
  list = Twitter::List.new(:id => 1)
18
18
  other = Twitter::Identity.new(:id => 1)
19
19
  expect(list == other).to be false
20
20
  end
21
21
  end
22
22
 
23
- describe "#created_at" do
24
- it "returns a Time when created_at is set" do
25
- list = Twitter::List.new(:id => 8863586, :created_at => "Mon Jul 16 12:59:01 +0000 2007")
23
+ describe '#created_at' do
24
+ it 'returns a Time when created_at is set' do
25
+ list = Twitter::List.new(:id => 8_863_586, :created_at => 'Mon Jul 16 12:59:01 +0000 2007')
26
26
  expect(list.created_at).to be_a Time
27
27
  end
28
- it "returns nil when created_at is not set" do
29
- list = Twitter::List.new(:id => 8863586)
28
+ it 'returns nil when created_at is not set' do
29
+ list = Twitter::List.new(:id => 8_863_586)
30
30
  expect(list.created_at).to be_nil
31
31
  end
32
32
  end
33
33
 
34
- describe "#created?" do
35
- it "returns true when created_at is set" do
36
- list = Twitter::List.new(:id => 8863586, :created_at => "Mon Jul 16 12:59:01 +0000 2007")
34
+ describe '#created?' do
35
+ it 'returns true when created_at is set' do
36
+ list = Twitter::List.new(:id => 8_863_586, :created_at => 'Mon Jul 16 12:59:01 +0000 2007')
37
37
  expect(list.created?).to be true
38
38
  end
39
- it "returns false when created_at is not set" do
40
- list = Twitter::List.new(:id => 8863586)
39
+ it 'returns false when created_at is not set' do
40
+ list = Twitter::List.new(:id => 8_863_586)
41
41
  expect(list.created?).to be false
42
42
  end
43
43
  end
44
44
 
45
- describe "#members_uri" do
46
- it "returns the URI to the list members" do
47
- list = Twitter::List.new(:id => 8863586, :slug => "presidents", :user => {:id => 7505382, :screen_name => "sferik"})
48
- expect(list.members_uri.to_s).to eq("https://twitter.com/sferik/presidents/members")
45
+ describe '#members_uri' do
46
+ it 'returns the URI to the list members' do
47
+ list = Twitter::List.new(:id => 8_863_586, :slug => 'presidents', :user => {:id => 7_505_382, :screen_name => 'sferik'})
48
+ expect(list.members_uri.to_s).to eq('https://twitter.com/sferik/presidents/members')
49
49
  end
50
50
  end
51
51
 
52
- describe "#subscribers_uri" do
53
- it "returns the URI to the list subscribers" do
54
- list = Twitter::List.new(:id => 8863586, :slug => "presidents", :user => {:id => 7505382, :screen_name => "sferik"})
55
- expect(list.subscribers_uri.to_s).to eq("https://twitter.com/sferik/presidents/subscribers")
52
+ describe '#subscribers_uri' do
53
+ it 'returns the URI to the list subscribers' do
54
+ list = Twitter::List.new(:id => 8_863_586, :slug => 'presidents', :user => {:id => 7_505_382, :screen_name => 'sferik'})
55
+ expect(list.subscribers_uri.to_s).to eq('https://twitter.com/sferik/presidents/subscribers')
56
56
  end
57
57
  end
58
58
 
59
- describe "#uri" do
60
- it "returns the URI to the list" do
61
- list = Twitter::List.new(:id => 8863586, :slug => "presidents", :user => {:id => 7505382, :screen_name => "sferik"})
62
- expect(list.uri.to_s).to eq("https://twitter.com/sferik/presidents")
59
+ describe '#uri' do
60
+ it 'returns the URI to the list' do
61
+ list = Twitter::List.new(:id => 8_863_586, :slug => 'presidents', :user => {:id => 7_505_382, :screen_name => 'sferik'})
62
+ expect(list.uri.to_s).to eq('https://twitter.com/sferik/presidents')
63
63
  end
64
64
  end
65
65
 
66
- describe "#user" do
67
- it "returns a User when user is set" do
68
- list = Twitter::List.new(:id => 8863586, :user => {:id => 7505382})
66
+ describe '#user' do
67
+ it 'returns a User when user is set' do
68
+ list = Twitter::List.new(:id => 8_863_586, :user => {:id => 7_505_382})
69
69
  expect(list.user).to be_a Twitter::User
70
70
  end
71
- it "returns nil when status is not set" do
72
- list = Twitter::List.new(:id => 8863586)
71
+ it 'returns nil when status is not set' do
72
+ list = Twitter::List.new(:id => 8_863_586)
73
73
  expect(list.user).to be_nil
74
74
  end
75
75
  end
76
76
 
77
- describe "#user?" do
78
- it "returns true when user is set" do
79
- list = Twitter::List.new(:id => 8863586, :user => {:id => 7505382})
77
+ describe '#user?' do
78
+ it 'returns true when user is set' do
79
+ list = Twitter::List.new(:id => 8_863_586, :user => {:id => 7_505_382})
80
80
  expect(list.user?).to be true
81
81
  end
82
- it "returns false when user is not set" do
83
- list = Twitter::List.new(:id => 8863586)
82
+ it 'returns false when user is not set' do
83
+ list = Twitter::List.new(:id => 8_863_586)
84
84
  expect(list.user?).to be false
85
85
  end
86
86
  end