Last active
January 30, 2016 22:28
-
-
Save mendaomn/e790afd04ea078518550 to your computer and use it in GitHub Desktop.
LetsTest - Naive Test "framework"
This file contains 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
( function __LetsTest__install(){ | |
window.LetsTest = window.LetsTest || {}; | |
function that( toBeChecked ){ | |
var myret; | |
if ( toBeChecked instanceof Function ) | |
myret = toBeChecked(); | |
else | |
myret = toBeChecked; | |
return { | |
ret: myret, | |
is: is | |
} | |
}; | |
function is( val ){ | |
var passed = ( this.ret === val ); | |
var typeMismatch = !passed && ( this.ret == val ); | |
if ( typeMismatch ) | |
console.warn( "Type mismatch!" ); | |
if ( passed ) | |
console.log( "Test passed" ); | |
else | |
console.warn( "Test failed, expecting", | |
typeof this.ret, this.ret, | |
"but had", | |
typeof val, val ); | |
return passed; | |
} | |
if ( !window.LetsTest.that || !( window.LetsTest.that instanceof Function ) ) { | |
window.LetsTest.that = that; | |
} | |
} )(); | |
LetsTest.that( 42 ).is( 42 ) // true | |
LetsTest.that( () => 42 ).is( 42 ) // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment