Skip to content

Instantly share code, notes, and snippets.

@trishagee
Created December 20, 2013 16:15
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
@Unroll
def 'should generate index name #indexName for #index'() {
expect:
index.getName() == indexName;
where:
index | indexName
new Index('x') | 'x_1'
new Index('x', OrderBy.ASC) | 'x_1'
new Index('x', OrderBy.DESC) | 'x_-1'
new Index(new Index.GeoKey('x')) | 'x_2d'
new Index(new Index.OrderedKey('x', OrderBy.ASC),
new Index.OrderedKey('y', OrderBy.ASC),
new Index.OrderedKey('a', OrderBy.ASC)) | 'x_1_y_1_a_1'
new Index(new Index.GeoKey('x'),
new Index.OrderedKey('y', OrderBy.DESC)) | 'x_2d_y_-1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment