Skip to content

Commit

Permalink
Added test for ticket Re #1001215 - No hyperlinking on List (only i…
Browse files Browse the repository at this point in the history
…n 2.10)
  • Loading branch information
dotta committed Sep 26, 2012
1 parent 5f81f00 commit e89ee30
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Expand Up @@ -87,4 +87,11 @@ class HyperlinkDetectorTests {
val oracle = List(Link("type util.Box.myInt"), Link("method util.Full.apply", "object util.Full"))
loadTestUnit("bug1000656/Client.scala").andCheckAgainst(oracle)
}

@Test
def hyperlinkOnList_t1001215() {
val oracle = List(Link("method scala.collection.immutable.List.apply", "object scala.collection.immutable.List"))

loadTestUnit("t1001215/A.scala").andCheckAgainst(oracle)
}
}
@@ -0,0 +1,5 @@
package t1001215

class A {
List/*^*/()
}

0 comments on commit e89ee30

Please sign in to comment.