@@ -8,7 +8,7 @@ Opal is a ruby to javascript source-to-source compiler. It also has an
8
8
implementation of the ruby corelib.
9
9
10
10
Opal is [ hosted on github] ( http://github.com/opal/opal ) , and there
11
- is a Freenode IRC channel at [ #opal] ( http://webchat.freenode.net/?channels=opal ) ,
11
+ is a Freenode IRC channel at [ #opal] ( http://webchat.freenode.net/?channels=opal ) ,
12
12
ask questions on [ stackoverflow#opalrb] ( http://stackoverflow.com/questions/ask?tags=opalrb ) .
13
13
14
14
@@ -58,17 +58,36 @@ First, install dependencies:
58
58
59
59
$ bundle install
60
60
61
- Rubyspecs must be cloned as a gitsubmodule :
61
+ RubySpec related repos must be cloned as a gitsubmodules :
62
62
63
63
$ git submodule update --init
64
64
65
- Tests can be run with phantomjs using :
65
+ The test suite can be run using (requires [ phantomjs ] [ ] ) :
66
66
67
67
$ rake
68
68
69
+ This will command will run all RSpec and MSpec examples in sequence.
70
+
71
+ ### MSpec
72
+
73
+ [ MSpec] [ ] tests can be run with:
74
+
75
+ $ rake mspec
76
+
69
77
Alternatively, you can just load up a rack instance using ` rackup spec/config.ru ` , and
70
78
visit ` http://localhost:9292/ ` in any web browser.
71
79
80
+ ### Rspec
81
+
82
+ [ RSpec] [ ] tests can be run with
83
+
84
+ $ rake rspec
85
+
86
+ Alternatively [ spectator] [ ] can be used in an autotest fashion with this command:
87
+
88
+ BASE_DIR_GLOB='lib/opal' SPEC_DIR_GLOB='spec/cli' spectator
89
+
90
+
72
91
## Code Overview
73
92
74
93
What code is supposed to run where?
@@ -95,6 +114,10 @@ StringScanner, Date, etc.
95
114
96
115
### spec
97
116
117
+ * ** rubyspecs** (file) a whitelist of RubySpec files to be ran
118
+ * ** corelib** RubySpec examples (submodule)
119
+ * ** stdlib** ` rubysl-* ` examples (submodules)
120
+ * ** filters** The list of MSpec/RubySpec examples that are either bugs or unsupported
98
121
* ** opal** opal additions/special behaviour in the runtime/corelib
99
122
* ** cli** specs for opal lib (parser, lexer, grammar, compiler etc)
100
123
@@ -145,3 +168,7 @@ THE SOFTWARE.
145
168
146
169
[ ![ Bitdeli Badge] ( https://d2weczhvl823v0.cloudfront.net/opal/opal/trend.png )] ( https://bitdeli.com/free " Bitdeli Badge ")
147
170
171
+ [ phantomjs ] : http://phantomjs.org
172
+ [ spectator ] : https://github.com/elia/spectator#readme
173
+ [ MSpec ] : https://github.com/rubyspec/mspec#readme
174
+ [ RSpec ] : https://github.com/rspec/rspec#readme
0 commit comments