Re: [Haskell-cafe] HPC question

2012-05-23 Thread Andres Löh
Hi David. Now, if I fiddle in the .tix file by hand to fake a usage of (/=) by changing the 52nd entry from 0 to 1, the Eq instance isn't highlighted any more in the HTML output. More strangely, if I then remove the usage of (==) by changing the 51st entry from 1 to 0, the Eq instance still

Re: [Haskell-cafe] HPC question

2012-05-23 Thread David Turner
On 23/05/2012 11:22, Andres Löh wrote: I've not looked at the .tix file, but a few tests seem to confirm what I'd suspect. For derived instances, you have to cover *all* methods, otherwise the type class will be shown as not covered. Ok, I see. It's going to take me a while to cover all

Re: [Haskell-cafe] HPC question

2012-05-23 Thread David Turner
On 23/05/2012 11:33, David Turner wrote: On 23/05/2012 11:22, Andres Löh wrote: I've not looked at the .tix file, but a few tests seem to confirm what I'd suspect. For derived instances, you have to cover *all* methods, otherwise the type class will be shown as not covered. Ok, I see. It's