2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe PolicyActor do
|
2018-11-18 11:00:15 +05:30
|
|
|
it 'implements all the methods from user' do
|
|
|
|
methods = subject.instance_methods
|
|
|
|
|
|
|
|
# User.instance_methods do not return all methods until an instance is
|
|
|
|
# initialized. So here we just use an instance
|
|
|
|
expect(build(:user).methods).to include(*methods)
|
|
|
|
end
|
|
|
|
end
|