exercism/cfml/hello-world/HelloWorldTest.cfc

19 lines
287 B
Plaintext

component extends="testbox.system.BaseSpec" {
function beforeAll(){
SUT = createObject( 'HelloWorld' );
}
function run(){
describe( "My HelloWorld class", function(){
it( 'Say Hi!', function(){
expect( SUT.hello() ).toBe( 'Hello, World!' );
});
});
}
}