Sha256: 765aa23da8b8c4087f5c9a014874ff2c62072d4dee0271dc8fb3f7668fc1c3a7
Contents?: true
Size: 803 Bytes
Versions: 2
Compression:
Stored size: 803 Bytes
Contents
require( ["require", "two", "funcTwo", "funcThree", "doh"], function(require, two, funcTwo, funcThree, doh){ var args = two.doSomething(); var twoInst = new funcTwo("TWO"); doh.register( "circular", [ function circular(t){ t.is("small", args.size); t.is("redtwo", args.color); } ] ); doh.run(); doh.register( "circularFunc", [ function circularFunc(t){ t.is("TWO", twoInst.name); t.is("ONE-NESTED", twoInst.oneName()); t.is("THREE-THREE_SUFFIX", funcThree("THREE")); } ] ); doh.run(); } );
Version data entries
2 entries across 2 versions & 1 rubygems