mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
11 lines
344 B
Ruby
11 lines
344 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe ::AuditEvents::InstanceAuditEvent, feature_category: :audit_events do
|
|
it_behaves_like 'includes ::AuditEvents::CommonModel concern' do
|
|
let_it_be(:audit_event_symbol) { :audit_events_instance_audit_event }
|
|
let_it_be(:audit_event_class) { described_class }
|
|
end
|
|
end
|