describe '#create' do
    context 'when the role is saved successfully' do
      it 'redirects to list' do
        allow(Role).to receive(:new).and_return(student_role)
        allow(student_role).to receive(:save).and_return(true)