Leave a skipped test in place for later

Going to get back to #14
This commit is contained in:
R. Tyler Croy 2015-01-29 04:41:35 -08:00
parent 0c59dcee70
commit 95c244867a
1 changed files with 7 additions and 0 deletions

View File

@ -82,6 +82,13 @@ class AbstractConsumerTreeWatcherSpec extends Specification {
then:
watcher.consumersMap.size() == 1
watcher.consumersMap[mapKey].size() == 2
}
@Ignore
def "removeConsumer() should remove a ConsumerOffset from the map"() {
given:
TopicPartition tp = new TopicPartition('spock', 1)
ConsumerOffset consumer = new ConsumerOffset()
}
}