Skip to content

Commit 26ddbbf

Browse files
jacgcocreature
authored andcommitted
Annotate tests with issue numbers (#251)
1 parent fb66f87 commit 26ddbbf

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

test/data/GotoHover.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{- HLINT ignore -}
2-
module Testing ( module Testing )where
2+
module Testing ( module Testing ) where
33
import Data.Text (Text, pack)
44
data TypeConstructor = DataConstructor
55
{ fff :: Text

test/exe/Main.hs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -796,28 +796,28 @@ findDefinitionAndHoverTests = let
796796
mkFindTests
797797
-- def hover look expect
798798
[ test yes yes fffL4 fff "field in record definition"
799-
, test broken broken fffL8 fff "field in record construction"
799+
, test broken broken fffL8 fff "field in record construction #71"
800800
, test yes yes fffL14 fff "field name used as accessor" -- 120 in Calculate.hs
801801
, test yes yes aaaL14 aaa "top-level name" -- 120
802-
, test broken broken dcL7 tcDC "record data constructor"
802+
, test broken broken dcL7 tcDC "record data constructor #247"
803803
, test yes yes dcL12 tcDC "plain data constructor" -- 121
804-
, test yes broken tcL6 tcData "type constructor" -- 147
805-
, test broken broken xtcL5 xtc "type constructor from other package"
806-
, test broken yes xvL20 xvMsg "value from other package" -- 120
804+
, test yes broken tcL6 tcData "type constructor #249" -- 147
805+
, test broken broken xtcL5 xtc "type constructor from other package #249"
806+
, test broken yes xvL20 xvMsg "value from other package #249" -- 120
807807
, test yes yes vvL16 vv "plain parameter" -- 120
808808
, test yes yes aL18 apmp "pattern match name" -- 120
809809
, test yes yes opL16 op "top-level operator" -- 120, 123
810810
, test yes yes opL18 opp "parameter operator" -- 120
811811
, test yes yes b'L19 bp "name in backticks" -- 120
812-
, test yes broken clL23 cls "class in instance declaration"
813-
, test yes broken clL25 cls "class in signature" -- 147
814-
, test broken broken eclL15 ecls "external class in signature"
812+
, test yes broken clL23 cls "class in instance declaration #250"
813+
, test yes broken clL25 cls "class in signature #250" -- 147
814+
, test broken broken eclL15 ecls "external class in signature #249,250"
815815
, test yes yes dnbL29 dnb "do-notation bind" -- 137
816816
, test yes yes dnbL30 dnb "do-notation lookup"
817817
, test yes yes lcbL33 lcb "listcomp bind" -- 137
818818
, test yes yes lclL33 lcb "listcomp lookup"
819819
, test yes yes mclL36 mcl "top-level fn 1st clause"
820-
, test broken broken mclL37 mcl "top-level fn 2nd clause" -- issue #245
820+
, test broken broken mclL37 mcl "top-level fn 2nd clause #245"
821821
]
822822
where yes, broken :: (TestTree -> Maybe TestTree)
823823
yes = Just -- test should run and pass

0 commit comments

Comments
 (0)