Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created March 9, 2012 13:37
Show Gist options
  • Save bittersweetryan/2006524 to your computer and use it in GitHub Desktop.
Save bittersweetryan/2006524 to your computer and use it in GitHub Desktop.
blog post
<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