8 lines
213 B
Ruby
8 lines
213 B
Ruby
require 'rails_helper'
|
|
|
|
describe Supporter do
|
|
it { is_expected.to validate_presence_of(:email) }
|
|
it { is_expected.to validate_uniqueness_of(:email) }
|
|
it { is_expected.to validate_presence_of(:support) }
|
|
end
|