I am generating coverage using "Devel::Cover" cpan module, which generates cover_db and has a runs subdirecoty inside. Inside run directory i am getting the file cover.14. How to get .12 or .13 format file and what does this .12, .13 or .14 format means ?? When i am generating html report of this file using cover_report of "Devel::CoverReport" module it is mentioned as per below subroutine of the module like it supports .12 and .13 format but i am getting .14 format
The below is the subroutine that is used in Devel::CoverReport::DB which shows .12 or .13 format.
read_db_file
Read and parse DB file, then return data structure as it is in the file.
By default, it assumes, that file is a storeble data dump. When storable fails, it will try to use JSON to load the data.
This method supports reading .12 and .13 file formats. It can auto-detect if it was serialized with storable or JSON.
If possible explain what this subroutine is means.