2019-01-11 07:28:09 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-24 01:05:53 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 03:49:53 +00:00
|
|
|
RSpec.describe Admin::ActionLog do
|
2019-01-11 07:28:09 +00:00
|
|
|
describe '#action' do
|
|
|
|
it 'returns action' do
|
|
|
|
action_log = described_class.new(action: 'hoge')
|
|
|
|
expect(action_log.action).to be :hoge
|
|
|
|
end
|
|
|
|
end
|
2017-11-24 01:05:53 +00:00
|
|
|
end
|