twitter-auth 0.1.7 → 0.1.8
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.
- data/VERSION.yml +1 -1
- data/app/models/twitter_auth/generic_user.rb +2 -2
- data/spec/debug.log +857 -0
- data/spec/models/twitter_auth/generic_user_spec.rb +9 -0
- metadata +2 -2
|
@@ -11,6 +11,15 @@ describe TwitterAuth::GenericUser do
|
|
|
11
11
|
Factory.build(:twitter_oauth_user).should have_at_least(1).errors_on(:login)
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
it 'should allow capital letters in the username' do
|
|
15
|
+
Factory.build(:twitter_oauth_user, :login => 'TwitterMan').should have(:no).errors_on(:login)
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
it 'should not allow the same login with different capitalization' do
|
|
19
|
+
Factory.create(:twitter_oauth_user, :login => 'twitterman')
|
|
20
|
+
Factory.build(:twitter_oauth_user, :login => 'TwitterMan').should have_at_least(1).errors_on(:login)
|
|
21
|
+
end
|
|
22
|
+
|
|
14
23
|
describe '.new_from_twitter_hash' do
|
|
15
24
|
it 'should raise an argument error if the hash does not have a screen_name attribute' do
|
|
16
25
|
lambda{User.new_from_twitter_hash({})}.should raise_error(ArgumentError, 'Invalid hash: must include screen_name.')
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: twitter-auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Bleigh
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-03-
|
|
12
|
+
date: 2009-03-21 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|