/*   mail_test
     Author: GimÃ©nez, Christian.

     Copyright (C) 2017 GimÃ©nez, Christian

     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation, either version 3 of the License, or
     at your option) any later version.

     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with this program.  If not, see <http://www.gnu.org/licenses/>.

     26 dic 2017
*/


:- module(mail_test, [	      
	  ]).
/** <module> mail_test: 

@author Gimenez, Christian
@license GPLv3
*/

:- license(gplv3).

:- begin_tests(mail).
:- use_module('../prolog/mail').

test(search_to_substr).
test(search_from_substr).
test(search_subject_substr).
test(search_unseen).    
test(search_older_than).

:- end_tests(mail).

