Skip to content

Commit

Permalink
Added empty test files
Browse files Browse the repository at this point in the history
All user plugins in this repository should have a test file, which may
be empty. This is useful because it allows the devenv to link in a test
that may not exist, so that it can be written (the alternative is to
either create the test before linking, relink after creating the test,
or link the test manually).

Some new plugins have been added without empty tests. This adds them.
  • Loading branch information
travisf committed Sep 17, 2015
1 parent d1cdae9 commit 72c80b2
Show file tree
Hide file tree
Showing 6 changed files with 90 additions and 0 deletions.
15 changes: 15 additions & 0 deletions filestore/nugetFolderMover/nugetFolderMoverTest.groovy
@@ -0,0 +1,15 @@
import static org.jfrog.artifactory.client.ArtifactoryClient.create
import spock.lang.Specification

class NugetFolderMoverTest extends Specification {
def 'test name'() {
setup:
def artifactory = create("http://localhost:8088/artifactory", "admin", "password")

//when:

//then:

//cleanup:
}
}
15 changes: 15 additions & 0 deletions metadata/getPypiMetadata/getPypiMetadataTest.groovy
@@ -0,0 +1,15 @@
import static org.jfrog.artifactory.client.ArtifactoryClient.create
import spock.lang.Specification

class GetPypiMetadataTest extends Specification {
def 'test name'() {
setup:
def artifactory = create("http://localhost:8088/artifactory", "admin", "password")

//when:

//then:

//cleanup:
}
}
@@ -0,0 +1,15 @@
import static org.jfrog.artifactory.client.ArtifactoryClient.create
import spock.lang.Specification

class FilterReplicationByPropertyTest extends Specification {
def 'test name'() {
setup:
def artifactory = create("http://localhost:8088/artifactory", "admin", "password")

//when:

//then:

//cleanup:
}
}
15 changes: 15 additions & 0 deletions replication/yumReplicationFilter/yumReplicationFilterTest.groovy
@@ -0,0 +1,15 @@
import static org.jfrog.artifactory.client.ArtifactoryClient.create
import spock.lang.Specification

class YumReplicationFilterTest extends Specification {
def 'test name'() {
setup:
def artifactory = create("http://localhost:8088/artifactory", "admin", "password")

//when:

//then:

//cleanup:
}
}
15 changes: 15 additions & 0 deletions security/getUsersByGroup/getUsersByGroupTest.groovy
@@ -0,0 +1,15 @@
import static org.jfrog.artifactory.client.ArtifactoryClient.create
import spock.lang.Specification

class GetUsersByGroupTest extends Specification {
def 'test name'() {
setup:
def artifactory = create("http://localhost:8088/artifactory", "admin", "password")

//when:

//then:

//cleanup:
}
}
15 changes: 15 additions & 0 deletions security/synchronizeLdapGroups/synchronizeLdapGroupsTest.groovy
@@ -0,0 +1,15 @@
import static org.jfrog.artifactory.client.ArtifactoryClient.create
import spock.lang.Specification

class SynchronizeLdapGroupsTest extends Specification {
def 'test name'() {
setup:
def artifactory = create("http://localhost:8088/artifactory", "admin", "password")

//when:

//then:

//cleanup:
}
}

0 comments on commit 72c80b2

Please sign in to comment.