Skip to content

Commit

Permalink
Merging changes and prepping for 2.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
christian.oestreich committed Jul 29, 2015
1 parent ca2cee4 commit 91b47f4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion FilterpaneGrailsPlugin.groovy
@@ -1,5 +1,5 @@
class FilterpaneGrailsPlugin {
def version = "2.4.7"
def version = "2.5.0"
def grailsVersion = "2.4 > *"

def author = "Grails Plugin Consortium"
Expand Down
Expand Up @@ -163,4 +163,18 @@ class FilterPaneTabLibSpec extends Specification {
then:
thrown(RuntimeException)
}


def "test filter criteria between"() {
given:
def params = ['filter.op.foo':'yes']


when:
def output = applyTemplate('<filterpane:currentCriteria domainBean="Book"/>', params)

then:
output == ''

}
}

0 comments on commit 91b47f4

Please sign in to comment.