mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:02:29 +08:00
11 lines
254 B
Ruby
11 lines
254 B
Ruby
require 'spec_helper'
|
|
|
|
describe TwitterUserInfo do
|
|
it "does not overflow" do
|
|
id = 22019458041
|
|
info = TwitterUserInfo.create!(user_id: -1, screen_name: 'sam', twitter_user_id: id)
|
|
info.reload
|
|
info.twitter_user_id.should == id
|
|
end
|
|
end
|