Created
March 9, 2012 13:37
-
-
Save bittersweetryan/2006524 to your computer and use it in GitHub Desktop.
blog post
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
<cfscript> | |
public void function testStringsShouldBeEqual(){ | |
var result = "Foo"; | |
//in the koans __ represents a value that you need to fill in to make the test return true | |
//in some cases you'll want to keep the "" and in some you wont (see next example) | |
assertEquals(result,"__"); | |
} | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment