2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2018-01-26 11:07:35 -05:00
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe UserCallout do
|
2021-09-14 20:09:30 -04:00
|
|
|
let_it_be(:callout) { create(:user_callout) }
|
2018-12-03 07:43:34 -05:00
|
|
|
|
2018-12-04 05:24:21 -05:00
|
|
|
it_behaves_like 'having unique enum values'
|
|
|
|
|
2018-02-01 21:07:33 -05:00
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:feature_name) }
|
2018-02-02 18:16:24 -05:00
|
|
|
it { is_expected.to validate_uniqueness_of(:feature_name).scoped_to(:user_id).ignoring_case_sensitivity }
|
2018-02-01 21:07:33 -05:00
|
|
|
end
|
2018-01-26 11:07:35 -05:00
|
|
|
end
|