sinon = import 'sinon'
expect = chai.expect
if not Object.values then Object.values = (obj)-> Object.keys(obj).map (key)-> obj[key]

suite "SimplyBind", ()->
	suiteSetup(startSandbox)
	import './specs/settings-and-options'
	import './specs/argument-values'
	import './specs/errors-and-warnings'
	import './specs/internal-behavior'
	import './specs/binding-behavior'
	import './specs/data-binding'
	import './specs/stage-1-methods'
	import './specs/stage-2-methods'
	import './specs/unBindAll'


