mirror of
https://github.com/discourse/discourse.git
synced 2024-12-15 07:23:45 +08:00
9 lines
194 B
Ruby
9 lines
194 B
Ruby
require 'rails_helper'
|
|
|
|
describe UserOpenId do
|
|
|
|
it { is_expected.to belong_to :user }
|
|
it { is_expected.to validate_presence_of :email }
|
|
it { is_expected.to validate_presence_of :url }
|
|
end
|