lib/assets/javascripts/opal-spec.js in opal-rails-0.3.1 vs lib/assets/javascripts/opal-spec.js in opal-rails-0.3.2
- old
+ new
@@ -1,32 +1,29 @@
// lib/opal-spec/browser_formatter.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module, __klass = __opal.klass;
return (function(__base){
- // line 1, opal-spec/browser_formatter, module OpalSpec
function OpalSpec() {};
OpalSpec = __module(__base, "OpalSpec", OpalSpec);
var OpalSpec_prototype = OpalSpec.prototype, __scope = OpalSpec._scope;
(function(__base, __super){
- // line 2, opal-spec/browser_formatter, class BrowserFormatter
function BrowserFormatter() {};
BrowserFormatter = __klass(__base, __super, "BrowserFormatter", BrowserFormatter);
+
var BrowserFormatter_prototype = BrowserFormatter.prototype, __scope = BrowserFormatter._scope;
BrowserFormatter_prototype.start_time = BrowserFormatter_prototype.failed_examples = BrowserFormatter_prototype.summary_element = BrowserFormatter_prototype.groups_element = BrowserFormatter_prototype.example_group_failed = BrowserFormatter_prototype.group_element = BrowserFormatter_prototype.examples = BrowserFormatter_prototype.example_list = nil;
__scope.CSS = "\n body {\n font-size: 14px;\n font-family: Helvetica Neue, Helvetica, Arial, sans-serif;\n }\n\n pre {\n font-family: \"Bitstream Vera Sans Mono\", Monaco, \"Lucida Console\", monospace;\n font-size: 12px;\n color: #444444;\n white-space: pre;\n padding: 3px 0px 3px 12px;\n margin: 0px 0px 8px;\n\n background: #FAFAFA;\n -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;\n -webkit-border-radius: 3px;\n -moz-border-radius: 3px;\n border-radius: 3px;\n border: 1px solid #DDDDDD;\n }\n\n ul.example_groups {\n list-style-type: none;\n }\n\n li.group.passed .group_description {\n color: #597800;\n font-weight: bold;\n }\n\n li.group.failed .group_description {\n color: #FF000E;\n font-weight: bold;\n }\n\n li.example.passed {\n color: #597800;\n }\n\n li.example.failed {\n color: #FF000E;\n }\n\n .examples {\n list-style-type: none;\n }\n ";
- // line 52, opal-spec/browser_formatter, BrowserFormatter#initialize
BrowserFormatter_prototype.$initialize = function() {
this.examples = [];
return this.failed_examples = [];
};
- // line 57, opal-spec/browser_formatter, BrowserFormatter#start
BrowserFormatter_prototype.$start = function() {
if (!document || !document.body) {
this.$raise("Not running in browser.");
@@ -62,19 +59,17 @@
this.start_time = __scope.Time.$now().$to_f();
this.groups_element = groups_element;
return this.summary_element = summary_element;
};
- // line 96, opal-spec/browser_formatter, BrowserFormatter#finish
BrowserFormatter_prototype.$finish = function() {
var time = nil, text = nil, __a, __b;
time = (__a = __scope.Time.$now().$to_f(), __b = this.start_time, typeof(__a) === 'number' ? __a - __b : __a['$-'](__b));
text = "\n" + (this.$example_count()) + " examples, " + (this.failed_examples.$size()) + " failures (time taken: " + (time) + ")";
return this.summary_element.innerHTML = text;
};
- // line 103, opal-spec/browser_formatter, BrowserFormatter#example_group_started
BrowserFormatter_prototype.$example_group_started = function(group) {
this.example_group = group;
this.example_group_failed = false;
@@ -93,28 +88,25 @@
this.group_element = group_element;
return this.example_list = example_list;
};
- // line 126, opal-spec/browser_formatter, BrowserFormatter#example_group_finished
BrowserFormatter_prototype.$example_group_finished = function(group) {
var __a;
if ((__a = this.example_group_failed) !== false && __a !== nil) {
return this.group_element.className = 'group failed';
} else {
return this.group_element.className = 'group passed';
};
};
- // line 134, opal-spec/browser_formatter, BrowserFormatter#example_started
BrowserFormatter_prototype.$example_started = function(example) {
this.examples['$<<'](example);
return this.example = example;
};
- // line 139, opal-spec/browser_formatter, BrowserFormatter#example_failed
BrowserFormatter_prototype.$example_failed = function(example) {
var exception = nil, $case = nil, output = nil;
this.failed_examples['$<<'](example);
this.example_group_failed = true;
exception = example.$exception();
@@ -141,11 +133,10 @@
this.example_list.appendChild(wrapper);
this.example_list.style.display = 'list-item';
};
- // line 176, opal-spec/browser_formatter, BrowserFormatter#example_passed
BrowserFormatter_prototype.$example_passed = function(example) {
var wrapper = document.createElement('li');
wrapper.className = 'example passed';
@@ -157,83 +148,74 @@
wrapper.appendChild(description);
this.example_list.appendChild(wrapper);
};
- // line 190, opal-spec/browser_formatter, BrowserFormatter#example_count
BrowserFormatter_prototype.$example_count = function() {
return this.examples.$size();
};
+ return nil;
})(OpalSpec, null)
})(self)
})();
// lib/opal-spec/example.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module, __klass = __opal.klass;
return (function(__base){
- // line 1, opal-spec/example, module OpalSpec
function OpalSpec() {};
OpalSpec = __module(__base, "OpalSpec", OpalSpec);
var OpalSpec_prototype = OpalSpec.prototype, __scope = OpalSpec._scope;
(function(__base, __super){
- // line 2, opal-spec/example, class Example
function Example() {};
Example = __klass(__base, __super, "Example", Example);
+
var Example_prototype = Example.prototype, __scope = Example._scope, TMP_1, TMP_2;
Example_prototype.description = Example_prototype.example_group = Example_prototype.exception = Example_prototype.asynchronous = Example_prototype.__block__ = nil;
- // line 3, opal-spec/example, Example#description
Example_prototype.$description = function() {
return this.description
},
- // line 3, opal-spec/example, Example#example_group
Example_prototype.$example_group = function() {
return this.example_group
},
- // line 3, opal-spec/example, Example#exception
Example_prototype.$exception = function() {
return this.exception
- };
+ }, nil;
- // line 4, opal-spec/example, Example#asynchronous
Example_prototype.$asynchronous = function() {
return this.asynchronous
},
- // line 4, opal-spec/example, Example#asynchronous=
Example_prototype['$asynchronous='] = function(val) {
return this.asynchronous = val
- };
+ }, nil;
- // line 6, opal-spec/example, Example#initialize
Example_prototype.$initialize = function(group, desc, block) {
this.example_group = group;
this.description = desc;
return this.__block__ = block;
};
- // line 12, opal-spec/example, Example#finish_running
Example_prototype.$finish_running = function() {
var __a;
if ((__a = this.exception) !== false && __a !== nil) {
return this.example_group.$example_failed(this)
} else {
return this.example_group.$example_passed(this)
};
};
- // line 20, opal-spec/example, Example#run
Example_prototype.$run = function() {
var e = nil, __a, __b;
try {
this.example_group.$example_started(this);
this.$run_before_hooks();
@@ -252,29 +234,27 @@
} else {
return this.$finish_running()
};
};
- // line 38, opal-spec/example, Example#run_after_hooks
Example_prototype.$run_after_hooks = function() {
var e = nil, __a, __b;
- return (function() { try {
- (__b = this.example_group.$after_hooks(), __b.$each._p = (__a = function(after) {
+ try {
+ return (__b = this.example_group.$after_hooks(), __b.$each._p = (__a = function(after) {
var __a;
if (after == null) after = nil;
return (__a = this, __a.$instance_eval._p = after.$to_proc(), __a.$instance_eval())
}, __a._s = this, __a), __b.$each())
} catch ($err) {
if (true) {
e = $err;this.exception = e}
else { throw $err; }
- } }).call(this);
+ };
};
- // line 48, opal-spec/example, Example#run_before_hooks
Example_prototype.$run_before_hooks = function() {
var __a, __b;
return (__b = this.example_group.$before_hooks(), __b.$each._p = (__a = function(before) {
var __a;
@@ -282,11 +262,10 @@
return (__a = this, __a.$instance_eval._p = before.$to_proc(), __a.$instance_eval())
}, __a._s = this, __a), __b.$each());
};
- // line 54, opal-spec/example, Example#run_async
Example_prototype.$run_async = TMP_1 = function() {
var e = nil, __context, block;
block = TMP_1._p || nil, __context = block._s, TMP_1._p = null;
try {
@@ -299,11 +278,10 @@
finally {
this.$run_after_hooks()};
return this.$finish_running();
};
- // line 66, opal-spec/example, Example#set_timeout
Example_prototype.$set_timeout = TMP_2 = function(duration) {
var __context, block;
block = TMP_2._p || nil, __context = block._s, TMP_2._p = null;
@@ -312,44 +290,42 @@
}, duration);
return this;
};
+ return nil;
})(OpalSpec, null)
})(self)
})();
// lib/opal-spec/example_group.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module, __klass = __opal.klass;
return (function(__base){
- // line 1, opal-spec/example_group, module OpalSpec
function OpalSpec() {};
OpalSpec = __module(__base, "OpalSpec", OpalSpec);
var OpalSpec_prototype = OpalSpec.prototype, __scope = OpalSpec._scope;
(function(__base, __super){
- // line 2, opal-spec/example_group, class ExampleGroup
function ExampleGroup() {};
ExampleGroup = __klass(__base, __super, "ExampleGroup", ExampleGroup);
- var ExampleGroup_prototype = ExampleGroup.prototype, __scope = ExampleGroup._scope, TMP_1, TMP_2, TMP_3, TMP_4;
+
+ ;ExampleGroup._sdonate(["$example_groups", "$create"]); var ExampleGroup_prototype = ExampleGroup.prototype, __scope = ExampleGroup._scope, TMP_1, TMP_2, TMP_3, TMP_4;
ExampleGroup_prototype.examples = ExampleGroup_prototype.before_hooks = ExampleGroup_prototype.after_hooks = ExampleGroup_prototype.parent = ExampleGroup_prototype.runner = ExampleGroup_prototype.running_examples = ExampleGroup_prototype.desc = nil;
ExampleGroup.example_groups = [];
- // line 4, opal-spec/example_group, ExampleGroup.example_groups
ExampleGroup.$example_groups = function() {
if (this.example_groups == null) this.example_groups = nil;
return this.example_groups
};
ExampleGroup.stack = [];
- // line 9, opal-spec/example_group, ExampleGroup.create
ExampleGroup.$create = function(desc, block) {
var group = nil, __a;
if (this.stack == null) this.stack = nil;
if (this.example_groups == null) this.example_groups = nil;
@@ -358,45 +334,40 @@
this.stack['$<<'](group);
(__a = group, __a.$instance_eval._p = block.$to_proc(), __a.$instance_eval());
return this.stack.$pop();
};
- // line 18, opal-spec/example_group, ExampleGroup#initialize
ExampleGroup_prototype.$initialize = function(desc, parent) {
this.desc = desc.$to_s();
this.parent = parent;
this.examples = [];
this.before_hooks = [];
return this.after_hooks = [];
};
- // line 27, opal-spec/example_group, ExampleGroup#it
ExampleGroup_prototype.$it = TMP_1 = function(desc) {
var __context, block;
block = TMP_1._p || nil, __context = block._s, TMP_1._p = null;
return this.examples['$<<'](__scope.Example.$new(this, desc, block));
};
- // line 31, opal-spec/example_group, ExampleGroup#async
ExampleGroup_prototype.$async = TMP_2 = function(desc) {
var example = nil, __context, block;
block = TMP_2._p || nil, __context = block._s, TMP_2._p = null;
example = __scope.Example.$new(this, desc, block);
example['$asynchronous='](true);
return this.examples['$<<'](example);
};
- // line 37, opal-spec/example_group, ExampleGroup#it_behaves_like
ExampleGroup_prototype.$it_behaves_like = function(objs) {
objs = __slice.call(arguments, 0);
return nil;
};
- // line 40, opal-spec/example_group, ExampleGroup#before
ExampleGroup_prototype.$before = TMP_3 = function(type) {
var __a, __context, block;
block = TMP_3._p || nil, __context = block._s, TMP_3._p = null;
if (type == null) {
type = "each"
@@ -405,11 +376,10 @@
this.$raise("unsupported before type: " + (type))
};
return this.before_hooks['$<<'](block);
};
- // line 45, opal-spec/example_group, ExampleGroup#after
ExampleGroup_prototype.$after = TMP_4 = function(type) {
var __a, __context, block;
block = TMP_4._p || nil, __context = block._s, TMP_4._p = null;
if (type == null) {
type = "each"
@@ -418,110 +388,99 @@
this.$raise("unsupported after type: " + (type))
};
return this.after_hooks['$<<'](block);
};
- // line 50, opal-spec/example_group, ExampleGroup#before_hooks
ExampleGroup_prototype.$before_hooks = function() {
var __a;
if ((__a = this.parent) !== false && __a !== nil) {
return [].$concat(this.parent.$before_hooks()).$concat(this.before_hooks)
} else {
return this.before_hooks
};
};
- // line 54, opal-spec/example_group, ExampleGroup#after_hooks
ExampleGroup_prototype.$after_hooks = function() {
var __a;
if ((__a = this.parent) !== false && __a !== nil) {
return [].$concat(this.parent.$after_hooks()).$concat(this.after_hooks)
} else {
return this.after_hooks
};
};
- // line 58, opal-spec/example_group, ExampleGroup#run
ExampleGroup_prototype.$run = function(runner) {
this.runner = runner;
this.runner.$example_group_started(this);
this.running_examples = this.examples.$dup();
return this.$run_next_example();
};
- // line 66, opal-spec/example_group, ExampleGroup#run_next_example
ExampleGroup_prototype.$run_next_example = function() {
var __a;
if ((__a = this.running_examples['$empty?']()) !== false && __a !== nil) {
return this.runner.$example_group_finished(this)
} else {
return this.running_examples.$shift().$run()
};
};
- // line 74, opal-spec/example_group, ExampleGroup#example_started
ExampleGroup_prototype.$example_started = function(example) {
return this.runner.$example_started(example);
};
- // line 78, opal-spec/example_group, ExampleGroup#example_passed
ExampleGroup_prototype.$example_passed = function(example) {
this.runner.$example_passed(example);
return this.$run_next_example();
};
- // line 83, opal-spec/example_group, ExampleGroup#example_failed
ExampleGroup_prototype.$example_failed = function(example) {
this.runner.$example_failed(example);
return this.$run_next_example();
};
- // line 88, opal-spec/example_group, ExampleGroup#description
ExampleGroup_prototype.$description = function() {
var __a;
if ((__a = this.parent) !== false && __a !== nil) {
return "" + (this.parent.$description()) + " " + (this.desc)
} else {
return this.desc
};
};
- ;ExampleGroup._sdonate(["$example_groups", "$create"]);
+
+ return nil;
})(OpalSpec, null)
})(self)
})();
// lib/opal-spec/expectations.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module, __klass = __opal.klass;
(function(__base){
- // line 1, opal-spec/expectations, module OpalSpec
function OpalSpec() {};
OpalSpec = __module(__base, "OpalSpec", OpalSpec);
var OpalSpec_prototype = OpalSpec.prototype, __scope = OpalSpec._scope;
(function(__base, __super){
- // line 2, opal-spec/expectations, class ExpectationNotMetError
function ExpectationNotMetError() {};
ExpectationNotMetError = __klass(__base, __super, "ExpectationNotMetError", ExpectationNotMetError);
+
var ExpectationNotMetError_prototype = ExpectationNotMetError.prototype, __scope = ExpectationNotMetError._scope;
- nil
-
+ return nil
})(OpalSpec, __scope.StandardError);
(function(__base){
- // line 4, opal-spec/expectations, module Expectations
function Expectations() {};
Expectations = __module(__base, "Expectations", Expectations);
var Expectations_prototype = Expectations.prototype, __scope = Expectations._scope;
- // line 5, opal-spec/expectations, Expectations#should
Expectations_prototype.$should = function(matcher) {
if (matcher == null) {
matcher = nil
}
if (matcher !== false && matcher !== nil) {
@@ -529,11 +488,10 @@
} else {
return (__scope.OpalSpec)._scope.PositiveOperatorMatcher.$new(this)
};
};
- // line 13, opal-spec/expectations, Expectations#should_not
Expectations_prototype.$should_not = function(matcher) {
if (matcher == null) {
matcher = nil
}
if (matcher !== false && matcher !== nil) {
@@ -541,78 +499,68 @@
} else {
return (__scope.OpalSpec)._scope.NegativeOperatorMatcher.$new(this)
};
};
- // line 21, opal-spec/expectations, Expectations#be_kind_of
Expectations_prototype.$be_kind_of = function(expected) {
return (__scope.OpalSpec)._scope.BeKindOfMatcher.$new(expected);
};
- // line 25, opal-spec/expectations, Expectations#be_nil
Expectations_prototype.$be_nil = function() {
return (__scope.OpalSpec)._scope.BeNilMatcher.$new(nil);
};
- // line 29, opal-spec/expectations, Expectations#be_true
Expectations_prototype.$be_true = function() {
return (__scope.OpalSpec)._scope.BeTrueMatcher.$new(true);
};
- // line 33, opal-spec/expectations, Expectations#be_false
Expectations_prototype.$be_false = function() {
return (__scope.OpalSpec)._scope.BeFalseMatcher.$new(false);
};
- // line 37, opal-spec/expectations, Expectations#equal
Expectations_prototype.$equal = function(expected) {
return (__scope.OpalSpec)._scope.EqualMatcher.$new(expected);
};
- // line 41, opal-spec/expectations, Expectations#raise_error
Expectations_prototype.$raise_error = function(expected) {
return (__scope.OpalSpec)._scope.RaiseErrorMatcher.$new(expected);
};
;Expectations._donate(["$should", "$should_not", "$be_kind_of", "$be_nil", "$be_true", "$be_false", "$equal", "$raise_error"]);
})(OpalSpec);
})(self);
return (function(__base, __super){
- // line 47, opal-spec/expectations, class Object
function Object() {};
Object = __klass(__base, __super, "Object", Object);
+
var Object_prototype = Object.prototype, __scope = Object._scope;
- Object.$include((__scope.OpalSpec)._scope.Expectations)
-
+ return Object.$include((__scope.OpalSpec)._scope.Expectations)
})(self, null);
})();
// lib/opal-spec/kernel.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module;
return (function(__base){
- // line 1, opal-spec/kernel, module Kernel
function Kernel() {};
Kernel = __module(__base, "Kernel", Kernel);
var Kernel_prototype = Kernel.prototype, __scope = Kernel._scope, TMP_1;
- // line 2, opal-spec/kernel, Kernel#describe
Kernel_prototype.$describe = TMP_1 = function(desc) {
var __context, block;
block = TMP_1._p || nil, __context = block._s, TMP_1._p = null;
return (__scope.OpalSpec)._scope.ExampleGroup.$create(desc, block);
};
- // line 6, opal-spec/kernel, Kernel#mock
Kernel_prototype.$mock = function(obj) {
return __scope.Object.$new();
};
;Kernel._donate(["$describe", "$mock"]);
@@ -621,183 +569,179 @@
// lib/opal-spec/matchers.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module, __klass = __opal.klass;
return (function(__base){
- // line 1, opal-spec/matchers, module OpalSpec
function OpalSpec() {};
OpalSpec = __module(__base, "OpalSpec", OpalSpec);
var OpalSpec_prototype = OpalSpec.prototype, __scope = OpalSpec._scope;
(function(__base, __super){
- // line 2, opal-spec/matchers, class Matcher
function Matcher() {};
Matcher = __klass(__base, __super, "Matcher", Matcher);
+
var Matcher_prototype = Matcher.prototype, __scope = Matcher._scope;
- // line 3, opal-spec/matchers, Matcher#initialize
Matcher_prototype.$initialize = function(actual) {
return this.actual = actual;
};
- // line 7, opal-spec/matchers, Matcher#failure
Matcher_prototype.$failure = function(message) {
return this.$raise((__scope.OpalSpec)._scope.ExpectationNotMetError, message);
};
+ return nil;
})(OpalSpec, null);
(function(__base, __super){
- // line 12, opal-spec/matchers, class PositiveOperatorMatcher
function PositiveOperatorMatcher() {};
PositiveOperatorMatcher = __klass(__base, __super, "PositiveOperatorMatcher", PositiveOperatorMatcher);
+
var PositiveOperatorMatcher_prototype = PositiveOperatorMatcher.prototype, __scope = PositiveOperatorMatcher._scope;
PositiveOperatorMatcher_prototype.actual = nil;
- // line 13, opal-spec/matchers, PositiveOperatorMatcher#==
PositiveOperatorMatcher_prototype['$=='] = function(expected) {
if (this.actual['$=='](expected)) {
return true
} else {
return this.$failure("expected: " + (expected.$inspect()) + ", got: " + (this.actual.$inspect()) + " (using ==).")
};
- }
+ };
+ return nil;
})(OpalSpec, __scope.Matcher);
(function(__base, __super){
- // line 22, opal-spec/matchers, class NegativeOperatorMatcher
function NegativeOperatorMatcher() {};
NegativeOperatorMatcher = __klass(__base, __super, "NegativeOperatorMatcher", NegativeOperatorMatcher);
+
var NegativeOperatorMatcher_prototype = NegativeOperatorMatcher.prototype, __scope = NegativeOperatorMatcher._scope;
NegativeOperatorMatcher_prototype.actual = nil;
- // line 23, opal-spec/matchers, NegativeOperatorMatcher#==
NegativeOperatorMatcher_prototype['$=='] = function(expected) {
if (this.actual['$=='](expected)) {
return this.$failure("expected: " + (expected.$inspect()) + " not to be " + (this.actual.$inspect()) + " (using ==).")
} else {
return nil
};
- }
+ };
+ return nil;
})(OpalSpec, __scope.Matcher);
(function(__base, __super){
- // line 30, opal-spec/matchers, class BeKindOfMatcher
function BeKindOfMatcher() {};
BeKindOfMatcher = __klass(__base, __super, "BeKindOfMatcher", BeKindOfMatcher);
+
var BeKindOfMatcher_prototype = BeKindOfMatcher.prototype, __scope = BeKindOfMatcher._scope;
BeKindOfMatcher_prototype.actual = nil;
- // line 31, opal-spec/matchers, BeKindOfMatcher#match
BeKindOfMatcher_prototype.$match = function(expected) {
var __a;
if ((__a = expected['$kind_of?'](this.actual)) !== false && __a !== nil) {
return nil
} else {
return this.$failure("expected " + (expected.$inspect()) + " to be a kind of " + (this.actual) + ", not " + (expected.$class()) + ".")
};
- }
+ };
+ return nil;
})(OpalSpec, __scope.Matcher);
(function(__base, __super){
- // line 38, opal-spec/matchers, class BeNilMatcher
function BeNilMatcher() {};
BeNilMatcher = __klass(__base, __super, "BeNilMatcher", BeNilMatcher);
+
var BeNilMatcher_prototype = BeNilMatcher.prototype, __scope = BeNilMatcher._scope;
- // line 39, opal-spec/matchers, BeNilMatcher#match
BeNilMatcher_prototype.$match = function(expected) {
var __a;
if ((__a = expected['$nil?']()) !== false && __a !== nil) {
return nil
} else {
return this.$failure("expected " + (expected.$inspect()) + " to be nil.")
};
- }
+ };
+ return nil;
})(OpalSpec, __scope.Matcher);
(function(__base, __super){
- // line 46, opal-spec/matchers, class BeTrueMatcher
function BeTrueMatcher() {};
BeTrueMatcher = __klass(__base, __super, "BeTrueMatcher", BeTrueMatcher);
+
var BeTrueMatcher_prototype = BeTrueMatcher.prototype, __scope = BeTrueMatcher._scope;
- // line 47, opal-spec/matchers, BeTrueMatcher#match
BeTrueMatcher_prototype.$match = function(expected) {
if (expected['$=='](true)) {
return nil
} else {
return this.$failure("expected " + (expected.$inspect()) + " to be true.")
};
- }
+ };
+ return nil;
})(OpalSpec, __scope.Matcher);
(function(__base, __super){
- // line 54, opal-spec/matchers, class BeFalseMatcher
function BeFalseMatcher() {};
BeFalseMatcher = __klass(__base, __super, "BeFalseMatcher", BeFalseMatcher);
+
var BeFalseMatcher_prototype = BeFalseMatcher.prototype, __scope = BeFalseMatcher._scope;
- // line 55, opal-spec/matchers, BeFalseMatcher#match
BeFalseMatcher_prototype.$match = function(expected) {
if (expected['$=='](false)) {
return nil
} else {
return this.$failure("expected " + (expected.$inspect()) + " to be false.")
};
- }
+ };
+ return nil;
})(OpalSpec, __scope.Matcher);
(function(__base, __super){
- // line 62, opal-spec/matchers, class EqualMatcher
function EqualMatcher() {};
EqualMatcher = __klass(__base, __super, "EqualMatcher", EqualMatcher);
+
var EqualMatcher_prototype = EqualMatcher.prototype, __scope = EqualMatcher._scope;
EqualMatcher_prototype.actual = nil;
- // line 63, opal-spec/matchers, EqualMatcher#match
EqualMatcher_prototype.$match = function(expected) {
var __a;
if ((__a = expected['$equal?'](this.actual)) !== false && __a !== nil) {
return nil
} else {
return this.$failure("expected " + (this.actual.$inspect()) + " to be the same as " + (expected.$inspect()) + ".")
};
};
- // line 69, opal-spec/matchers, EqualMatcher#not_match
EqualMatcher_prototype.$not_match = function(expected) {
var __a;
if ((__a = expected['$equal?'](this.actual)) !== false && __a !== nil) {
return this.$failure("expected " + (this.actual.$inspect()) + " not to be equal to " + (expected.$inspect()) + ".")
} else {
return nil
};
};
+ return nil;
})(OpalSpec, __scope.Matcher);
(function(__base, __super){
- // line 76, opal-spec/matchers, class RaiseErrorMatcher
function RaiseErrorMatcher() {};
RaiseErrorMatcher = __klass(__base, __super, "RaiseErrorMatcher", RaiseErrorMatcher);
+
var RaiseErrorMatcher_prototype = RaiseErrorMatcher.prototype, __scope = RaiseErrorMatcher._scope;
RaiseErrorMatcher_prototype.actual = nil;
- // line 77, opal-spec/matchers, RaiseErrorMatcher#match
RaiseErrorMatcher_prototype.$match = function(block) {
var should_raise = nil, e = nil;
should_raise = false;
try {
block.$call();
@@ -810,65 +754,59 @@
if (should_raise !== false && should_raise !== nil) {
return this.$failure("expected " + (this.actual) + " to be raised, but nothing was.")
} else {
return nil
};
- }
+ };
+ return nil;
})(OpalSpec, __scope.Matcher);
})(self)
})();
// lib/opal-spec/phantom_formatter.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module, __klass = __opal.klass;
return (function(__base){
- // line 1, opal-spec/phantom_formatter, module OpalSpec
function OpalSpec() {};
OpalSpec = __module(__base, "OpalSpec", OpalSpec);
var OpalSpec_prototype = OpalSpec.prototype, __scope = OpalSpec._scope;
(function(__base, __super){
- // line 2, opal-spec/phantom_formatter, class PhantomFormatter
function PhantomFormatter() {};
PhantomFormatter = __klass(__base, __super, "PhantomFormatter", PhantomFormatter);
+
var PhantomFormatter_prototype = PhantomFormatter.prototype, __scope = PhantomFormatter._scope;
PhantomFormatter_prototype.failed_examples = PhantomFormatter_prototype.examples = nil;
- // line 3, opal-spec/phantom_formatter, PhantomFormatter#initialize
PhantomFormatter_prototype.$initialize = function() {
this.examples = [];
return this.failed_examples = [];
};
- // line 8, opal-spec/phantom_formatter, PhantomFormatter#log_green
PhantomFormatter_prototype.$log_green = function(str) {
return console.log('\033[92m' + str + '\033[0m');
};
- // line 12, opal-spec/phantom_formatter, PhantomFormatter#log_red
PhantomFormatter_prototype.$log_red = function(str) {
return console.log('\033[31m' + str + '\033[0m');
};
- // line 16, opal-spec/phantom_formatter, PhantomFormatter#log
PhantomFormatter_prototype.$log = function(str) {
return console.log(str);
};
- // line 20, opal-spec/phantom_formatter, PhantomFormatter#start
PhantomFormatter_prototype.$start = function() {
return nil;
};
- // line 23, opal-spec/phantom_formatter, PhantomFormatter#finish
PhantomFormatter_prototype.$finish = function() {
var __a, __b;
if ((__a = this.failed_examples['$empty?']()) !== false && __a !== nil) {
this.$log("\nFinished");
this.$log_green("" + (this.$example_count()) + " examples, 0 failures");
@@ -894,11 +832,10 @@
this.$log_red("" + (this.$example_count()) + " examples, " + (this.failed_examples.$size()) + " failures");
return this.$finish_with_code(1);
};
};
- // line 57, opal-spec/phantom_formatter, PhantomFormatter#finish_with_code
PhantomFormatter_prototype.$finish_with_code = function(code) {
if (typeof(phantom) !== 'undefined') {
return phantom.exit(code);
@@ -907,73 +844,66 @@
window.OPAL_SPEC_CODE = code;
}
};
- // line 68, opal-spec/phantom_formatter, PhantomFormatter#example_group_started
PhantomFormatter_prototype.$example_group_started = function(group) {
this.example_group = group;
this.example_group_failed = false;
return this.$log("\n" + (group.$description()));
};
- // line 75, opal-spec/phantom_formatter, PhantomFormatter#example_group_finished
PhantomFormatter_prototype.$example_group_finished = function(group) {
return nil;
};
- // line 78, opal-spec/phantom_formatter, PhantomFormatter#example_started
PhantomFormatter_prototype.$example_started = function(example) {
this.examples['$<<'](example);
return this.example = example;
};
- // line 83, opal-spec/phantom_formatter, PhantomFormatter#example_failed
PhantomFormatter_prototype.$example_failed = function(example) {
this.failed_examples['$<<'](example);
this.example_group_failed = true;
return this.$log_red(" " + (example.$description()));
};
- // line 89, opal-spec/phantom_formatter, PhantomFormatter#example_passed
PhantomFormatter_prototype.$example_passed = function(example) {
return this.$log_green(" " + (example.$description()));
};
- // line 93, opal-spec/phantom_formatter, PhantomFormatter#example_count
PhantomFormatter_prototype.$example_count = function() {
return this.examples.$size();
};
+ return nil;
})(OpalSpec, null)
})(self)
})();
// lib/opal-spec/runner.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module, __klass = __opal.klass;
return (function(__base){
- // line 1, opal-spec/runner, module OpalSpec
function OpalSpec() {};
OpalSpec = __module(__base, "OpalSpec", OpalSpec);
var OpalSpec_prototype = OpalSpec.prototype, __scope = OpalSpec._scope;
(function(__base, __super){
- // line 2, opal-spec/runner, class Runner
function Runner() {};
Runner = __klass(__base, __super, "Runner", Runner);
- var Runner_prototype = Runner.prototype, __scope = Runner._scope;
+
+ ;Runner._sdonate(["$in_browser?", "$in_phantom?", "$autorun"]); var Runner_prototype = Runner.prototype, __scope = Runner._scope;
Runner_prototype.formatter = Runner_prototype.groups = nil;
- // line 3, opal-spec/runner, Runner.in_browser?
Runner['$in_browser?'] = function() {
if (typeof(window) !== 'undefined' && typeof(document) !== 'undefined') {
return true;
@@ -981,11 +911,10 @@
return false;
};
- // line 13, opal-spec/runner, Runner.in_phantom?
Runner['$in_phantom?'] = function() {
if (typeof(phantom) !== 'undefined' || typeof(OPAL_SPEC_PHANTOM) !== 'undefined') {
return true;
@@ -993,11 +922,10 @@
return false;
};
- // line 23, opal-spec/runner, Runner.autorun
Runner.$autorun = function() {
var __a;
if ((__a = this['$in_browser?']()) !== false && __a !== nil) {
setTimeout(function() {
@@ -1007,11 +935,10 @@
} else {
return __scope.Runner.$new().$run()
}
};
- // line 35, opal-spec/runner, Runner#initialize
Runner_prototype.$initialize = function() {
var __a;
if ((__a = __scope.Runner['$in_phantom?']()) !== false && __a !== nil) {
return this.formatter = __scope.PhantomFormatter.$new()
} else {
@@ -1021,94 +948,83 @@
return nil
}
};
};
- // line 43, opal-spec/runner, Runner#run
Runner_prototype.$run = function() {
this.groups = __scope.ExampleGroup.$example_groups().$dup();
this.formatter.$start();
return this.$run_next_group();
};
- // line 49, opal-spec/runner, Runner#run_next_group
Runner_prototype.$run_next_group = function() {
var __a;
if ((__a = this.groups['$empty?']()) !== false && __a !== nil) {
return this.formatter.$finish()
} else {
return this.groups.$shift().$run(this)
};
};
- // line 57, opal-spec/runner, Runner#example_group_started
Runner_prototype.$example_group_started = function(group) {
return this.formatter.$example_group_started(group);
};
- // line 61, opal-spec/runner, Runner#example_group_finished
Runner_prototype.$example_group_finished = function(group) {
this.formatter.$example_group_finished(group);
return this.$run_next_group();
};
- // line 66, opal-spec/runner, Runner#example_started
Runner_prototype.$example_started = function(example) {
return this.formatter.$example_started(example);
};
- // line 70, opal-spec/runner, Runner#example_passed
Runner_prototype.$example_passed = function(example) {
return this.formatter.$example_passed(example);
};
- // line 74, opal-spec/runner, Runner#example_failed
Runner_prototype.$example_failed = function(example) {
return this.formatter.$example_failed(example);
};
- ;Runner._sdonate(["$in_browser?", "$in_phantom?", "$autorun"]);
+
+ return nil;
})(OpalSpec, null)
})(self)
})();
// lib/opal-spec/scratch_pad.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module;
return (function(__base){
- // line 1, opal-spec/scratch_pad, module ScratchPad
function ScratchPad() {};
ScratchPad = __module(__base, "ScratchPad", ScratchPad);
var ScratchPad_prototype = ScratchPad.prototype, __scope = ScratchPad._scope;
- // line 2, opal-spec/scratch_pad, ScratchPad.clear
ScratchPad.$clear = function() {
return this.record = nil
};
- // line 6, opal-spec/scratch_pad, ScratchPad.record
ScratchPad.$record = function(arg) {
return this.record = arg
};
- // line 10, opal-spec/scratch_pad, ScratchPad.<<
ScratchPad['$<<'] = function(arg) {
if (this.record == null) this.record = nil;
return this.record['$<<'](arg)
};
- // line 14, opal-spec/scratch_pad, ScratchPad.recorded
ScratchPad.$recorded = function() {
if (this.record == null) this.record = nil;
return this.record
@@ -1119,10 +1035,9 @@
// lib/opal-spec/version.rb
(function() {
var __opal = Opal, self = __opal.top, __scope = __opal, nil = __opal.nil, __breaker = __opal.breaker, __slice = __opal.slice, __module = __opal.module;
return (function(__base){
- // line 1, opal-spec/version, module OpalSpec
function OpalSpec() {};
OpalSpec = __module(__base, "OpalSpec", OpalSpec);
var OpalSpec_prototype = OpalSpec.prototype, __scope = OpalSpec._scope;
__scope.VERSION = "0.2.1"