You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
618 B
29 lines
618 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
RSpec.describe AccountableConcern do |
|
let(:hoge_class) do |
|
Class.new do |
|
include AccountableConcern |
|
|
|
attr_reader :current_account |
|
|
|
def initialize(current_account) |
|
@current_account = current_account |
|
end |
|
end |
|
end |
|
|
|
let(:user) { Fabricate(:account) } |
|
let(:target) { Fabricate(:account) } |
|
let(:hoge) { hoge_class.new(user) } |
|
|
|
describe '#log_action' do |
|
it 'creates Admin::ActionLog' do |
|
expect do |
|
hoge.log_action(:create, target) |
|
end.to change(Admin::ActionLog, :count).by(1) |
|
end |
|
end |
|
end
|
|
|