'use strict'

##  Trivial unit test that'll always pass.
##  This is here because having zero tests will fail your test run.

describe( 'A trivial unit test suite', () ->
    it( 'should always pass', () ->
        return
    )
    return
)
