Skip to content

Commit

Permalink
Change values of Issue annotations in specs to point at the new issue…
Browse files Browse the repository at this point in the history
… tracker.
  • Loading branch information
erdi committed Aug 13, 2015
1 parent 832bf32 commit 869afa8
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package grails.plugin.geb
import geb.spock.GebReportingSpec
import spock.lang.Issue

@Issue("http://jira.codehaus.org/browse/GEB-32")
@Issue("https://github.com/geb/issues/issues/32")
class GEB32Spec extends GebReportingSpec {

def "can resolve module base"() {
Expand Down
4 changes: 2 additions & 2 deletions module/geb-core/src/test/groovy/geb/ModulesSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ class ModulesSpec extends GebSpecWithCallbackServer {
thrown(InvalidPageContent)
}

@Issue("http://jira.codehaus.org/browse/GEB-2")
@Issue("https://github.com/geb/issues/issues/2")
def "can access module instance methods from content"() {
when:
to ModulesSpecPage
then:
instanceMethod.val == 3
}

@Issue("http://jira.codehaus.org/browse/GEB-38")
@Issue("https://github.com/geb/issues/issues/38")
def "can coerce module to boolean"() {
when:
to ModulesSpecPage
Expand Down
2 changes: 1 addition & 1 deletion module/geb-core/src/test/groovy/geb/NavigableSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class NavigableSpec extends GebSpecWithCallbackServer {
find("p", class: "c").text() == "c"
}

@Issue("GEB-339")
@Issue("https://github.com/geb/issues/issues/339")
def "predicates map passed to find is not modified"() {
given:
def predicates = [class: "c"]
Expand Down
4 changes: 2 additions & 2 deletions module/geb-core/src/test/groovy/geb/PageOrientedSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -266,15 +266,15 @@ class PageOrientedSpec extends GebSpecWithCallbackServer {
link.@id == "a"
}

@Issue("http://jira.codehaus.org/browse/GEB-2")
@Issue("https://github.com/geb/issues/issues/2")
def "can call instance methods from content definition blocks"() {
when:
to InstanceMethodPage
then:
val == 3
}

@Issue("http://jira.codehaus.org/browse/GEB-139")
@Issue("https://github.com/geb/issues/issues/139")
def "convertToPath should not introduce slashes were it should not"() {
when: 'we go to the page by specifying the parameter manually'
via ConvertPage, theParam: "foo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class ConfigurationDriverCreationSpec extends Specification {
d instanceof HtmlUnitDriver
}

@Issue('http://jira.codehaus.org/browse/GEB-231')
@Issue('https://github.com/geb/issues/issues/231')
def "DriverCreationException is thrown when creation closure returns something that is not a driver instance"() {
given:
def config = new ConfigObject()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class ConfigurationLoaderSpec extends Specification {
ClassInfo.allClassInfo.findAll { it.cachedClass.name.contains("script") && it.strongMetaClass != null }.size()
}

@Issue("GEB-335")
@Issue("https://github.com/geb/issues/issues/335")
def "config script backing class can be garbage collected"() {
when:
load goodScript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class DriverWithInvalidGetCurrentUrlImplementationSpec extends GebSpecWithServer
browser.config.cacheDriver = false
}

@Issue('http://jira.codehaus.org/browse/GEB-291')
@Issue('https://github.com/geb/issues/issues/291')
void 'go() does not fail even if the driver returns null for get current url command'() {
when:
go()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class FindAndFilterNavigatorSpec extends GebSpecWithCallbackServer {
$("div", class: "a c")
}

@Issue("http://jira.codehaus.org/browse/GEB-14")
@Issue("https://github.com/geb/issues/issues/14")
def "find by attributes passing a class pattern should match any of the classes on an element"() {
given:
html {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class FormControlSpec extends GebSpecWithCallbackServer {
$().r == "r2"
}

@Issue("http://jira.codehaus.org/browse/GEB-37")
@Issue("https://github.com/geb/issues/issues/37")
def "radio - by label text"() {
when:
html {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import spock.lang.Unroll
@Unroll
class NavigatorClickSpec extends GebSpecWithCallbackServer {

@Issue('GEB-160')
@Issue('https://github.com/geb/issues/issues/160')
def 'click call returns receiver for parameters: #clickParams'() {
given:
html { button("") }
Expand Down

0 comments on commit 869afa8

Please sign in to comment.