Files
cgrates/local_test.sh
Radu Ioan Fericean f79a173aa6 refactor for v1 and v2 api
added Load api for multiple id resources
2014-09-18 19:58:50 +03:00

25 lines
439 B
Bash
Executable File

#! /usr/bin/env sh
./test.sh
gen=$?
go test github.com/cgrates/cgrates/apier/v1 -local
ap1=$?
go test github.com/cgrates/cgrates/apier/v2 -local
ap2=$?
go test github.com/cgrates/cgrates/engine -local
en=$?
go test github.com/cgrates/cgrates/cdrc -local
cdrc=$?
go test github.com/cgrates/cgrates/config -local
cfg=$?
go test github.com/cgrates/cgrates/utils -local
utl=$?
exit $gen && $ap1 && $ap2 && $en && $cdrc && $cfg && $utl