Skip to content

Instantly share code, notes, and snippets.

View gsmaverick's full-sized avatar

Gavin Schulz gsmaverick

  • San Francisco, CA
View GitHub Profile
// Simple unit testing in wren.
class Spec {
new(description, body) {
_description = description
if (_body.type == Fiber){
_body = body
} else {
_body = new Fiber(body)
@gsmaverick
gsmaverick / spec.wren.dart
Created January 18, 2015 02:33
Simple unit testing in wren.
// Simple unit testing in wren.
class Spec {
new(description, body) {
_description = description
_body = body
}
description { _description }
@gsmaverick
gsmaverick / spec.wren
Created January 18, 2015 02:32
Simple unit testing in wren.
// Simple unit testing in wren.
class Spec {
new(description, body) {
_description = description
_body = body
}
description { _description }
@gsmaverick
gsmaverick / spec.wren
Last active August 29, 2015 14:13
Simple unit testing in wren.
// Simple unit testing in wren.
class Spec {
new(description, body) {
_description = description
_body = body
}
description { _description }