rubybreaker 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/NEWS +5 -0
  2. data/NOTES +9 -0
  3. data/README.md +100 -183
  4. data/Rakefile +21 -6
  5. data/VERSION +1 -1
  6. data/bin/rubybreaker +34 -50
  7. data/lib/rubybreaker/debug/debug.rb +6 -0
  8. data/lib/rubybreaker/doc/rdoc.rb +37 -0
  9. data/lib/rubybreaker/doc.rb +3 -0
  10. data/lib/rubybreaker/runtime/inspector.rb +6 -28
  11. data/lib/rubybreaker/runtime/monitor.rb +21 -17
  12. data/lib/rubybreaker/runtime/object_wrapper.rb +7 -2
  13. data/lib/rubybreaker/runtime/type_system.rb +3 -5
  14. data/lib/rubybreaker/runtime/typesig_unparser.rb +1 -4
  15. data/lib/rubybreaker/runtime.rb +64 -105
  16. data/lib/rubybreaker/task.rb +97 -0
  17. data/lib/rubybreaker/test/rspec.rb +1 -1
  18. data/lib/rubybreaker/test/testcase.rb +13 -28
  19. data/lib/rubybreaker/type/type.rb +1 -1
  20. data/lib/rubybreaker/typing/subtyping.rb +10 -5
  21. data/lib/rubybreaker/util.rb +0 -1
  22. data/lib/rubybreaker.rb +163 -115
  23. data/test/integrated/tc_both_broken_breakable.rb +5 -4
  24. data/test/integrated/tc_class_methods.rb +4 -3
  25. data/test/integrated/tc_inherit_broken.rb +4 -3
  26. data/test/integrated/tc_method_missing.rb +4 -4
  27. data/test/integrated/tc_namespace.rb +4 -2
  28. data/test/integrated/tc_simple1.rb +4 -3
  29. data/test/runtime/tc_obj_wrapper.rb +25 -6
  30. data/test/runtime/tc_typesig_parser.rb +0 -1
  31. data/test/testtask/sample.rb +10 -0
  32. data/test/testtask/tc_testtask.rb +25 -0
  33. data/test/ts_rspec.rb +21 -15
  34. data/test/typing/tc_typing.rb +2 -3
  35. data/webpage/index.html +105 -193
  36. data/webpage/rdoc/Kernel.html +286 -0
  37. data/webpage/rdoc/Object.html +17 -11
  38. data/webpage/rdoc/Rake/RubyBreakerTestTask.html +374 -0
  39. data/webpage/rdoc/Rake.html +212 -0
  40. data/webpage/rdoc/RubyBreaker/Breakable.html +24 -40
  41. data/webpage/rdoc/RubyBreaker/Broken.html +21 -69
  42. data/webpage/rdoc/RubyBreaker/Context.html +16 -10
  43. data/webpage/rdoc/RubyBreaker/Errors/InternalError.html +16 -10
  44. data/webpage/rdoc/RubyBreaker/Errors/InvalidSubtypeCheck.html +16 -10
  45. data/webpage/rdoc/RubyBreaker/Errors/InvalidTypeConstruction.html +16 -10
  46. data/webpage/rdoc/RubyBreaker/Errors/SubtypeFailure.html +16 -10
  47. data/webpage/rdoc/RubyBreaker/Errors/TypeError.html +16 -10
  48. data/webpage/rdoc/RubyBreaker/Errors/UserError.html +16 -10
  49. data/webpage/rdoc/RubyBreaker/Errors.html +16 -10
  50. data/webpage/rdoc/RubyBreaker/ObjectPosition.html +16 -10
  51. data/webpage/rdoc/RubyBreaker/Position.html +16 -10
  52. data/webpage/rdoc/RubyBreaker/{TestCase.html → RDocSupport.html} +81 -82
  53. data/webpage/rdoc/RubyBreaker/RubyTypeUtils.html +16 -10
  54. data/webpage/rdoc/RubyBreaker/Runtime/Inspector.html +25 -44
  55. data/webpage/rdoc/RubyBreaker/Runtime/MethodInfo.html +16 -10
  56. data/webpage/rdoc/RubyBreaker/Runtime/Monitor.html +19 -13
  57. data/webpage/rdoc/RubyBreaker/Runtime/MonitorInstaller.html +37 -25
  58. data/webpage/rdoc/RubyBreaker/Runtime/MonitorSwitch.html +20 -14
  59. data/webpage/rdoc/RubyBreaker/Runtime/MonitorUtils.html +21 -15
  60. data/webpage/rdoc/RubyBreaker/Runtime/ObjectWrapper.html +23 -12
  61. data/webpage/rdoc/RubyBreaker/Runtime/Pluggable.html +16 -10
  62. data/webpage/rdoc/RubyBreaker/Runtime/TypeSigParser.html +16 -10
  63. data/webpage/rdoc/RubyBreaker/Runtime/{TypesigUnparser.html → TypeSigUnparser.html} +19 -16
  64. data/webpage/rdoc/RubyBreaker/Runtime/TypeSystem.html +18 -14
  65. data/webpage/rdoc/RubyBreaker/Runtime.html +145 -11
  66. data/webpage/rdoc/RubyBreaker/TypeComparer.html +16 -10
  67. data/webpage/rdoc/RubyBreaker/TypeDefs/AnyType.html +16 -10
  68. data/webpage/rdoc/RubyBreaker/TypeDefs/BlockType.html +16 -10
  69. data/webpage/rdoc/RubyBreaker/TypeDefs/DuckType.html +16 -10
  70. data/webpage/rdoc/RubyBreaker/TypeDefs/FusionType.html +16 -10
  71. data/webpage/rdoc/RubyBreaker/TypeDefs/MethodListType.html +16 -10
  72. data/webpage/rdoc/RubyBreaker/TypeDefs/MethodType.html +16 -10
  73. data/webpage/rdoc/RubyBreaker/TypeDefs/NilType.html +16 -10
  74. data/webpage/rdoc/RubyBreaker/TypeDefs/NominalType.html +16 -10
  75. data/webpage/rdoc/RubyBreaker/TypeDefs/OptionalType.html +16 -10
  76. data/webpage/rdoc/RubyBreaker/TypeDefs/OrType.html +16 -10
  77. data/webpage/rdoc/RubyBreaker/TypeDefs/SelfType.html +17 -11
  78. data/webpage/rdoc/RubyBreaker/TypeDefs/Type.html +17 -11
  79. data/webpage/rdoc/RubyBreaker/TypeDefs/VarLengthType.html +16 -10
  80. data/webpage/rdoc/RubyBreaker/TypeDefs.html +16 -10
  81. data/webpage/rdoc/RubyBreaker/TypeUnparser.html +16 -10
  82. data/webpage/rdoc/RubyBreaker/Typing.html +17 -11
  83. data/webpage/rdoc/RubyBreaker/Util.html +16 -10
  84. data/webpage/rdoc/RubyBreaker.html +167 -34
  85. data/webpage/rdoc/{RubyBreaker/Runtime/TypePlaceholder.html → Test/Unit/TestCase.html} +68 -39
  86. data/webpage/rdoc/Test/Unit.html +211 -0
  87. data/webpage/rdoc/Test.html +211 -0
  88. data/webpage/rdoc/created.rid +18 -17
  89. data/webpage/rdoc/index.html +16 -10
  90. data/webpage/rdoc/js/search_index.js +1 -1
  91. data/webpage/rdoc/table_of_contents.html +61 -48
  92. metadata +21 -12
  93. data/lib/rubybreaker/rubylib/core.rb +0 -2483
  94. data/lib/rubybreaker/rubylib.rb +0 -3
  95. data/lib/rubybreaker/runtime/type_placeholder.rb +0 -23
  96. data/webpage/rdoc/RubyBreaker/Broken/BrokenEigen.html +0 -305
  97. data/webpage/rdoc/RubyBreaker/Main.html +0 -458
@@ -4,7 +4,7 @@
4
4
  <head>
5
5
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
6
 
7
- <title>class RubyBreaker::Runtime::TypePlaceholder - RDoc Documentation</title>
7
+ <title>class Test::Unit::TestCase - RDoc Documentation</title>
8
8
 
9
9
  <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet">
10
10
 
@@ -47,7 +47,7 @@
47
47
  <nav id="file-list-section" class="section">
48
48
  <h3 class="section-header">Defined In</h3>
49
49
  <ul>
50
- <li>lib/rubybreaker/runtime/type_placeholder.rb
50
+ <li>lib/rubybreaker/test/testcase.rb
51
51
  </ul>
52
52
  </nav>
53
53
 
@@ -72,6 +72,8 @@
72
72
 
73
73
  <li><a href="#method-c-new">::new</a>
74
74
 
75
+ <li><a href="#method-i-__rubybreaker_initialize">#__rubybreaker_initialize</a>
76
+
75
77
  </ul>
76
78
  </nav>
77
79
 
@@ -90,8 +92,6 @@
90
92
 
91
93
  <li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
92
94
 
93
- <li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
94
-
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
@@ -108,12 +108,12 @@
108
108
 
109
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
110
110
 
111
- <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
112
-
113
111
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
114
112
 
115
113
  <li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
116
114
 
115
+ <li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
116
+
117
117
  <li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
118
118
 
119
119
  <li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
@@ -134,15 +134,11 @@
134
134
 
135
135
  <li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
136
136
 
137
- <li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
138
-
139
137
  <li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
140
138
 
141
- <li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
142
-
143
- <li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
139
+ <li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
144
140
 
145
- <li><a href="../../RubyBreaker/TestCase.html">RubyBreaker::TestCase</a>
141
+ <li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
146
142
 
147
143
  <li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
148
144
 
@@ -180,6 +176,18 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
182
178
 
179
+ <li><a href="../../Test.html">Test</a>
180
+
181
+ <li><a href="../../Test/Unit.html">Test::Unit</a>
182
+
183
+ <li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
184
+
185
+ <li><a href="../../Rake.html">Rake</a>
186
+
187
+ <li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
188
+
189
+ <li><a href="../../Kernel.html">Kernel</a>
190
+
183
191
  <li><a href="../../Object.html">Object</a>
184
192
 
185
193
  </ul>
@@ -189,11 +197,12 @@
189
197
  </nav>
190
198
 
191
199
  <div id="documentation">
192
- <h1 class="class">class RubyBreaker::Runtime::TypePlaceholder</h1>
200
+ <h1 class="class">class Test::Unit::TestCase</h1>
193
201
 
194
202
  <div id="description" class="description">
195
203
 
196
- <p>This class is a placeholder for method types</p>
204
+ <p>This class is patched to run <a
205
+ href="../../RubyBreaker.html">RubyBreaker</a> along with the test cases.</p>
197
206
 
198
207
  </div><!-- description -->
199
208
 
@@ -208,26 +217,6 @@
208
217
 
209
218
 
210
219
 
211
- <!-- Attributes -->
212
- <section id="attribute-method-details" class="method-section section">
213
- <h3 class="section-header">Attributes</h3>
214
-
215
-
216
- <div id="attribute-i-meth_type_map" class="method-detail">
217
- <div class="method-heading attribute-method-heading">
218
- <span class="method-name">meth_type_map</span><span
219
- class="attribute-access-type">[RW]</span>
220
- </div>
221
-
222
- <div class="method-description">
223
-
224
- <p>This accessor sets/gets instance method map</p>
225
-
226
- </div>
227
- </div>
228
-
229
- </section><!-- attribute-method-details -->
230
-
231
220
 
232
221
  <!-- Methods -->
233
222
 
@@ -239,27 +228,34 @@
239
228
 
240
229
  <div class="method-heading">
241
230
  <span class="method-name">new</span><span
242
- class="method-args">()</span>
231
+ class="method-args">(*args, &blk)</span>
243
232
  <span class="method-click-advice">click to toggle source</span>
244
233
  </div>
245
234
 
246
235
 
247
236
  <div class="method-description">
248
237
 
249
-
238
+ <p>This method overrides the original constructor to run <a
239
+ href="../../RubyBreaker.html">RubyBreaker</a> before calling the original
240
+ constructor.</p>
250
241
 
251
242
 
252
243
 
253
244
  <div class="method-source-code" id="new-source">
254
- <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_placeholder.rb, line 15</span>
255
- <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>()
256
- <span class="ruby-ivar">@meth_type_map</span> = {}
245
+ <pre><span class="ruby-comment"># File lib/rubybreaker/test/testcase.rb, line 16</span>
246
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(*<span class="ruby-identifier">args</span>, &amp;<span class="ruby-identifier">blk</span>)
247
+ <span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">run</span>()
248
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">send</span>(<span class="ruby-value">:__rubybreaker_initialize</span>, *<span class="ruby-identifier">args</span>, &amp;<span class="ruby-identifier">blk</span>)
257
249
  <span class="ruby-keyword">end</span></pre>
258
250
  </div><!-- new-source -->
259
251
 
260
252
  </div>
261
253
 
262
254
 
255
+ <div class="aliases">
256
+ Also aliased as: <a href="TestCase.html#method-i-__rubybreaker_initialize">__rubybreaker_initialize</a>
257
+ </div>
258
+
263
259
 
264
260
 
265
261
  </div><!-- new-method -->
@@ -267,6 +263,39 @@
267
263
 
268
264
  </section><!-- public-class-method-details -->
269
265
 
266
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
267
+ <h3 class="section-header">Public Instance Methods</h3>
268
+
269
+
270
+ <div id="method-i-__rubybreaker_initialize" class="method-detail method-alias">
271
+
272
+ <div class="method-heading">
273
+ <span class="method-name">__rubybreaker_initialize</span><span
274
+ class="method-args">(*args, &blk)</span>
275
+ <span class="method-click-advice">click to toggle source</span>
276
+ </div>
277
+
278
+
279
+ <div class="method-description">
280
+
281
+ <p>Save the original constructor method.</p>
282
+
283
+
284
+
285
+ </div>
286
+
287
+
288
+
289
+
290
+ <div class="aliases">
291
+ Alias for: <a href="TestCase.html#method-c-new">new</a>
292
+ </div>
293
+
294
+ </div><!-- __rubybreaker_initialize-method -->
295
+
296
+
297
+ </section><!-- public-instance-method-details -->
298
+
270
299
  </section><!-- 5Buntitled-5D -->
271
300
 
272
301
  </div><!-- documentation -->
@@ -0,0 +1,211 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>module Test::Unit - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="module">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ </ul>
51
+ </nav>
52
+
53
+
54
+ </div>
55
+
56
+ <div id="class-metadata">
57
+
58
+
59
+
60
+
61
+ </div>
62
+
63
+ <div id="project-metadata">
64
+
65
+ <nav id="classindex-section" class="section project-section">
66
+ <h3 class="section-header">Class and Module Index</h3>
67
+
68
+ <ul class="link-list">
69
+
70
+ <li><a href="../RubyBreaker.html">RubyBreaker</a>
71
+
72
+ <li><a href="../RubyBreaker/Breakable.html">RubyBreaker::Breakable</a>
73
+
74
+ <li><a href="../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
75
+
76
+ <li><a href="../RubyBreaker/Context.html">RubyBreaker::Context</a>
77
+
78
+ <li><a href="../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
79
+
80
+ <li><a href="../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
81
+
82
+ <li><a href="../RubyBreaker/Errors/InvalidSubtypeCheck.html">RubyBreaker::Errors::InvalidSubtypeCheck</a>
83
+
84
+ <li><a href="../RubyBreaker/Errors/InvalidTypeConstruction.html">RubyBreaker::Errors::InvalidTypeConstruction</a>
85
+
86
+ <li><a href="../RubyBreaker/Errors/SubtypeFailure.html">RubyBreaker::Errors::SubtypeFailure</a>
87
+
88
+ <li><a href="../RubyBreaker/Errors/TypeError.html">RubyBreaker::Errors::TypeError</a>
89
+
90
+ <li><a href="../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
91
+
92
+ <li><a href="../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
93
+
94
+ <li><a href="../RubyBreaker/Position.html">RubyBreaker::Position</a>
95
+
96
+ <li><a href="../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
97
+
98
+ <li><a href="../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
99
+
100
+ <li><a href="../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
101
+
102
+ <li><a href="../RubyBreaker/Runtime/Inspector.html">RubyBreaker::Runtime::Inspector</a>
103
+
104
+ <li><a href="../RubyBreaker/Runtime/MethodInfo.html">RubyBreaker::Runtime::MethodInfo</a>
105
+
106
+ <li><a href="../RubyBreaker/Runtime/Monitor.html">RubyBreaker::Runtime::Monitor</a>
107
+
108
+ <li><a href="../RubyBreaker/Runtime/MonitorInstaller.html">RubyBreaker::Runtime::MonitorInstaller</a>
109
+
110
+ <li><a href="../RubyBreaker/Runtime/MonitorSwitch.html">RubyBreaker::Runtime::MonitorSwitch</a>
111
+
112
+ <li><a href="../RubyBreaker/Runtime/MonitorUtils.html">RubyBreaker::Runtime::MonitorUtils</a>
113
+
114
+ <li><a href="../RubyBreaker/Runtime/ObjectWrapper.html">RubyBreaker::Runtime::ObjectWrapper</a>
115
+
116
+ <li><a href="../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
117
+
118
+ <li><a href="../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
119
+
120
+ <li><a href="../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
121
+
122
+ <li><a href="../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
123
+
124
+ <li><a href="../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
125
+
126
+ <li><a href="../RubyBreaker/TypeDefs.html">RubyBreaker::TypeDefs</a>
127
+
128
+ <li><a href="../RubyBreaker/TypeDefs/AnyType.html">RubyBreaker::TypeDefs::AnyType</a>
129
+
130
+ <li><a href="../RubyBreaker/TypeDefs/BlockType.html">RubyBreaker::TypeDefs::BlockType</a>
131
+
132
+ <li><a href="../RubyBreaker/TypeDefs/DuckType.html">RubyBreaker::TypeDefs::DuckType</a>
133
+
134
+ <li><a href="../RubyBreaker/TypeDefs/FusionType.html">RubyBreaker::TypeDefs::FusionType</a>
135
+
136
+ <li><a href="../RubyBreaker/TypeDefs/MethodListType.html">RubyBreaker::TypeDefs::MethodListType</a>
137
+
138
+ <li><a href="../RubyBreaker/TypeDefs/MethodType.html">RubyBreaker::TypeDefs::MethodType</a>
139
+
140
+ <li><a href="../RubyBreaker/TypeDefs/NilType.html">RubyBreaker::TypeDefs::NilType</a>
141
+
142
+ <li><a href="../RubyBreaker/TypeDefs/NominalType.html">RubyBreaker::TypeDefs::NominalType</a>
143
+
144
+ <li><a href="../RubyBreaker/TypeDefs/OptionalType.html">RubyBreaker::TypeDefs::OptionalType</a>
145
+
146
+ <li><a href="../RubyBreaker/TypeDefs/OrType.html">RubyBreaker::TypeDefs::OrType</a>
147
+
148
+ <li><a href="../RubyBreaker/TypeDefs/SelfType.html">RubyBreaker::TypeDefs::SelfType</a>
149
+
150
+ <li><a href="../RubyBreaker/TypeDefs/Type.html">RubyBreaker::TypeDefs::Type</a>
151
+
152
+ <li><a href="../RubyBreaker/TypeDefs/VarLengthType.html">RubyBreaker::TypeDefs::VarLengthType</a>
153
+
154
+ <li><a href="../RubyBreaker/TypeUnparser.html">RubyBreaker::TypeUnparser</a>
155
+
156
+ <li><a href="../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
157
+
158
+ <li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
159
+
160
+ <li><a href="../Test.html">Test</a>
161
+
162
+ <li><a href="../Test/Unit.html">Test::Unit</a>
163
+
164
+ <li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
165
+
166
+ <li><a href="../Rake.html">Rake</a>
167
+
168
+ <li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
169
+
170
+ <li><a href="../Kernel.html">Kernel</a>
171
+
172
+ <li><a href="../Object.html">Object</a>
173
+
174
+ </ul>
175
+ </nav>
176
+
177
+ </div>
178
+ </nav>
179
+
180
+ <div id="documentation">
181
+ <h1 class="module">module Test::Unit</h1>
182
+
183
+ <div id="description" class="description">
184
+
185
+ </div><!-- description -->
186
+
187
+
188
+
189
+
190
+ <section id="5Buntitled-5D" class="documentation-section">
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+ <!-- Methods -->
200
+
201
+ </section><!-- 5Buntitled-5D -->
202
+
203
+ </div><!-- documentation -->
204
+
205
+
206
+ <footer id="validator-badges">
207
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
208
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
209
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
210
+ </footer>
211
+
@@ -0,0 +1,211 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>module Test - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="module">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="./index.html">Home</a>
28
+ <a href="./table_of_contents.html#classes">Classes</a>
29
+ <a href="./table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ </ul>
51
+ </nav>
52
+
53
+
54
+ </div>
55
+
56
+ <div id="class-metadata">
57
+
58
+
59
+
60
+
61
+ </div>
62
+
63
+ <div id="project-metadata">
64
+
65
+ <nav id="classindex-section" class="section project-section">
66
+ <h3 class="section-header">Class and Module Index</h3>
67
+
68
+ <ul class="link-list">
69
+
70
+ <li><a href="./RubyBreaker.html">RubyBreaker</a>
71
+
72
+ <li><a href="./RubyBreaker/Breakable.html">RubyBreaker::Breakable</a>
73
+
74
+ <li><a href="./RubyBreaker/Broken.html">RubyBreaker::Broken</a>
75
+
76
+ <li><a href="./RubyBreaker/Context.html">RubyBreaker::Context</a>
77
+
78
+ <li><a href="./RubyBreaker/Errors.html">RubyBreaker::Errors</a>
79
+
80
+ <li><a href="./RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
81
+
82
+ <li><a href="./RubyBreaker/Errors/InvalidSubtypeCheck.html">RubyBreaker::Errors::InvalidSubtypeCheck</a>
83
+
84
+ <li><a href="./RubyBreaker/Errors/InvalidTypeConstruction.html">RubyBreaker::Errors::InvalidTypeConstruction</a>
85
+
86
+ <li><a href="./RubyBreaker/Errors/SubtypeFailure.html">RubyBreaker::Errors::SubtypeFailure</a>
87
+
88
+ <li><a href="./RubyBreaker/Errors/TypeError.html">RubyBreaker::Errors::TypeError</a>
89
+
90
+ <li><a href="./RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
91
+
92
+ <li><a href="./RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
93
+
94
+ <li><a href="./RubyBreaker/Position.html">RubyBreaker::Position</a>
95
+
96
+ <li><a href="./RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
97
+
98
+ <li><a href="./RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
99
+
100
+ <li><a href="./RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
101
+
102
+ <li><a href="./RubyBreaker/Runtime/Inspector.html">RubyBreaker::Runtime::Inspector</a>
103
+
104
+ <li><a href="./RubyBreaker/Runtime/MethodInfo.html">RubyBreaker::Runtime::MethodInfo</a>
105
+
106
+ <li><a href="./RubyBreaker/Runtime/Monitor.html">RubyBreaker::Runtime::Monitor</a>
107
+
108
+ <li><a href="./RubyBreaker/Runtime/MonitorInstaller.html">RubyBreaker::Runtime::MonitorInstaller</a>
109
+
110
+ <li><a href="./RubyBreaker/Runtime/MonitorSwitch.html">RubyBreaker::Runtime::MonitorSwitch</a>
111
+
112
+ <li><a href="./RubyBreaker/Runtime/MonitorUtils.html">RubyBreaker::Runtime::MonitorUtils</a>
113
+
114
+ <li><a href="./RubyBreaker/Runtime/ObjectWrapper.html">RubyBreaker::Runtime::ObjectWrapper</a>
115
+
116
+ <li><a href="./RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
117
+
118
+ <li><a href="./RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
119
+
120
+ <li><a href="./RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
121
+
122
+ <li><a href="./RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
123
+
124
+ <li><a href="./RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
125
+
126
+ <li><a href="./RubyBreaker/TypeDefs.html">RubyBreaker::TypeDefs</a>
127
+
128
+ <li><a href="./RubyBreaker/TypeDefs/AnyType.html">RubyBreaker::TypeDefs::AnyType</a>
129
+
130
+ <li><a href="./RubyBreaker/TypeDefs/BlockType.html">RubyBreaker::TypeDefs::BlockType</a>
131
+
132
+ <li><a href="./RubyBreaker/TypeDefs/DuckType.html">RubyBreaker::TypeDefs::DuckType</a>
133
+
134
+ <li><a href="./RubyBreaker/TypeDefs/FusionType.html">RubyBreaker::TypeDefs::FusionType</a>
135
+
136
+ <li><a href="./RubyBreaker/TypeDefs/MethodListType.html">RubyBreaker::TypeDefs::MethodListType</a>
137
+
138
+ <li><a href="./RubyBreaker/TypeDefs/MethodType.html">RubyBreaker::TypeDefs::MethodType</a>
139
+
140
+ <li><a href="./RubyBreaker/TypeDefs/NilType.html">RubyBreaker::TypeDefs::NilType</a>
141
+
142
+ <li><a href="./RubyBreaker/TypeDefs/NominalType.html">RubyBreaker::TypeDefs::NominalType</a>
143
+
144
+ <li><a href="./RubyBreaker/TypeDefs/OptionalType.html">RubyBreaker::TypeDefs::OptionalType</a>
145
+
146
+ <li><a href="./RubyBreaker/TypeDefs/OrType.html">RubyBreaker::TypeDefs::OrType</a>
147
+
148
+ <li><a href="./RubyBreaker/TypeDefs/SelfType.html">RubyBreaker::TypeDefs::SelfType</a>
149
+
150
+ <li><a href="./RubyBreaker/TypeDefs/Type.html">RubyBreaker::TypeDefs::Type</a>
151
+
152
+ <li><a href="./RubyBreaker/TypeDefs/VarLengthType.html">RubyBreaker::TypeDefs::VarLengthType</a>
153
+
154
+ <li><a href="./RubyBreaker/TypeUnparser.html">RubyBreaker::TypeUnparser</a>
155
+
156
+ <li><a href="./RubyBreaker/Typing.html">RubyBreaker::Typing</a>
157
+
158
+ <li><a href="./RubyBreaker/Util.html">RubyBreaker::Util</a>
159
+
160
+ <li><a href="./Test.html">Test</a>
161
+
162
+ <li><a href="./Test/Unit.html">Test::Unit</a>
163
+
164
+ <li><a href="./Test/Unit/TestCase.html">Test::Unit::TestCase</a>
165
+
166
+ <li><a href="./Rake.html">Rake</a>
167
+
168
+ <li><a href="./Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
169
+
170
+ <li><a href="./Kernel.html">Kernel</a>
171
+
172
+ <li><a href="./Object.html">Object</a>
173
+
174
+ </ul>
175
+ </nav>
176
+
177
+ </div>
178
+ </nav>
179
+
180
+ <div id="documentation">
181
+ <h1 class="module">module Test</h1>
182
+
183
+ <div id="description" class="description">
184
+
185
+ </div><!-- description -->
186
+
187
+
188
+
189
+
190
+ <section id="5Buntitled-5D" class="documentation-section">
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+ <!-- Methods -->
200
+
201
+ </section><!-- 5Buntitled-5D -->
202
+
203
+ </div><!-- documentation -->
204
+
205
+
206
+ <footer id="validator-badges">
207
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
208
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
209
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
210
+ </footer>
211
+