a2cfc150ce
Adds `# frozen_string_literal: true` to spec/models ruby files
13 lines
250 B
Ruby
13 lines
250 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe GroupBadge do
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to(:group) }
|
|
end
|
|
|
|
describe 'validations' do
|
|
it { is_expected.to validate_presence_of(:group) }
|
|
end
|
|
end
|