13 lines
290 B
Ruby
13 lines
290 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe DependencyProxy::GroupSetting, type: :model do
|
|
describe 'relationships' do
|
|
it { is_expected.to belong_to(:group) }
|
|
end
|
|
|
|
describe 'validations' do
|
|
it { is_expected.to validate_presence_of(:group) }
|
|
end
|
|
end
|