Remove administrateur active notion

This commit is contained in:
simon lehericey 2019-11-05 10:06:54 +01:00
parent 5643e671a0
commit 395aba8bbc
2 changed files with 0 additions and 22 deletions

View file

@ -80,8 +80,4 @@ class Administrateur < ApplicationRecord
def can_be_deleted?
dossiers.state_instruction_commencee.none? && procedures.none?
end
def active?
user.last_sign_in_at.present?
end
end

View file

@ -50,22 +50,4 @@ describe Administrateur, type: :model do
# it { expect(subject).to eq([]) }
# end
# end
describe '#active?' do
let!(:administrateur) { create(:administrateur) }
subject { administrateur.active? }
context 'when the user has never signed in' do
before { administrateur.user.update(last_sign_in_at: nil) }
it { is_expected.to be false }
end
context 'when the user has already signed in' do
before { administrateur.user.update(last_sign_in_at: Time.zone.now) }
it { is_expected.to be true }
end
end
end