Created
August 17, 2012 13:31
-
-
Save mike-neck/3378714 to your computer and use it in GitHub Desktop.
Spockこういう書き方もできる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.mikeneck.grenail | |
import spock.lang.Specification | |
class WebHandlerSpec extends Specification { | |
def 'initialize test' () { | |
when : | |
def handler = init | |
then : | |
handler.root == file | |
where : | |
init | file | |
new WebHandler() | new File('.') | |
new WebHandler('public') | new File('public') | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment