cee4c5b8fb
This reverts commit 751f24f7bb
.
17 lines
424 B
Ruby
17 lines
424 B
Ruby
describe Manager::InstructeursController, type: :controller do
|
|
let(:administration) { create(:administration) }
|
|
|
|
describe '#delete' do
|
|
let!(:instructeur) { create(:instructeur) }
|
|
|
|
before { sign_in administration }
|
|
|
|
subject { delete :delete, params: { id: instructeur.id } }
|
|
|
|
it 'deletes the instructeur' do
|
|
subject
|
|
|
|
expect(Instructeur.find_by(id: instructeur.id)).to be_nil
|
|
end
|
|
end
|
|
end
|