caricature 0.3.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Rakefile +100 -0
- data/VERSION +1 -0
- data/caricature.gemspec +177 -0
- data/doc/Array.html +251 -0
- data/doc/Caricature/ArgumentRecording.html +366 -0
- data/doc/Caricature/ClrClassDescriptor.html +303 -0
- data/doc/Caricature/ClrClassMessenger.html +263 -0
- data/doc/Caricature/ClrInterfaceDescriptor.html +295 -0
- data/doc/Caricature/ClrInterfaceIsolator.html +365 -0
- data/doc/Caricature/ClrInterfaceMessenger.html +260 -0
- data/doc/Caricature/ClrIsolator.html +424 -0
- data/doc/Caricature/Expectation.html +549 -0
- data/doc/Caricature/ExpectationBuilder.html +308 -0
- data/doc/Caricature/ExpectationSyntax.html +438 -0
- data/doc/Caricature/Expectations.html +344 -0
- data/doc/Caricature/Interception/ClassMethods.html +246 -0
- data/doc/Caricature/Interception.html +416 -0
- data/doc/Caricature/Isolation.html +578 -0
- data/doc/Caricature/Isolator.html +519 -0
- data/doc/Caricature/MemberDescriptor.html +335 -0
- data/doc/Caricature/Messenger.html +335 -0
- data/doc/Caricature/MethodCallRecorder.html +440 -0
- data/doc/Caricature/MethodCallRecording.html +493 -0
- data/doc/Caricature/RubyIsolator.html +416 -0
- data/doc/Caricature/RubyMessenger.html +260 -0
- data/doc/Caricature/RubyObjectDescriptor.html +289 -0
- data/doc/Caricature/TypeDescriptor.html +378 -0
- data/doc/Caricature/Verification.html +443 -0
- data/doc/Caricature.html +358 -0
- data/doc/Class.html +287 -0
- data/doc/Hash.html +255 -0
- data/doc/Module.html +287 -0
- data/doc/Object.html +322 -0
- data/doc/README_markdown.html +241 -0
- data/doc/String.html +289 -0
- data/doc/System/String.html +289 -0
- data/doc/System/Type.html +289 -0
- data/doc/System.html +207 -0
- data/doc/created.rid +1 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +312 -0
- data/doc/js/darkfish.js +116 -0
- data/doc/js/jquery.js +32 -0
- data/doc/js/quicksearch.js +114 -0
- data/doc/js/thickbox-compressed.js +10 -0
- data/doc/lib/caricature/clr/descriptor_rb.html +52 -0
- data/doc/lib/caricature/clr/isolation_rb.html +52 -0
- data/doc/lib/caricature/clr/isolator_rb.html +52 -0
- data/doc/lib/caricature/clr/messenger_rb.html +52 -0
- data/doc/lib/caricature/clr_rb.html +52 -0
- data/doc/lib/caricature/descriptor_rb.html +52 -0
- data/doc/lib/caricature/expectation_rb.html +52 -0
- data/doc/lib/caricature/isolation_rb.html +52 -0
- data/doc/lib/caricature/isolator_rb.html +52 -0
- data/doc/lib/caricature/messaging_rb.html +52 -0
- data/doc/lib/caricature/method_call_recorder_rb.html +52 -0
- data/doc/lib/caricature/verification_rb.html +52 -0
- data/doc/lib/caricature_rb.html +52 -0
- data/doc/lib/core_ext/array_rb.html +52 -0
- data/doc/lib/core_ext/class_rb.html +52 -0
- data/doc/lib/core_ext/core_ext_rb.html +52 -0
- data/doc/lib/core_ext/hash_rb.html +52 -0
- data/doc/lib/core_ext/module_rb.html +52 -0
- data/doc/lib/core_ext/object_rb.html +52 -0
- data/doc/lib/core_ext/string_rb.html +52 -0
- data/doc/lib/core_ext/system/string_rb.html +52 -0
- data/doc/lib/core_ext/system/type_rb.html +52 -0
- data/doc/rdoc.css +696 -0
- data/irb_init.rb +9 -0
- data/lib/bin/Workarounds.dll +0 -0
- data/lib/bin/Workarounds.pdb +0 -0
- data/lib/caricature/clr/descriptor.rb +55 -0
- data/lib/caricature/clr/isolation.rb +33 -0
- data/lib/caricature/clr/isolator.rb +112 -0
- data/lib/caricature/clr/messenger.rb +46 -0
- data/lib/caricature/clr.rb +6 -0
- data/lib/caricature/descriptor.rb +74 -0
- data/lib/caricature/expectation.rb +159 -0
- data/lib/caricature/isolation.rb +146 -0
- data/lib/caricature/isolator.rb +287 -0
- data/lib/caricature/messenger.rb +57 -0
- data/lib/caricature/method_call_recorder.rb +130 -0
- data/lib/caricature/verification.rb +43 -0
- data/lib/caricature.rb +11 -0
- data/lib/core_ext/array.rb +10 -0
- data/lib/core_ext/class.rb +15 -0
- data/lib/core_ext/core_ext.rb +8 -0
- data/lib/core_ext/hash.rb +13 -0
- data/lib/core_ext/module.rb +15 -0
- data/lib/core_ext/object.rb +19 -0
- data/lib/core_ext/string.rb +17 -0
- data/lib/core_ext/system/string.rb +21 -0
- data/lib/core_ext/system/type.rb +21 -0
- data/pkg/.gitignore +0 -0
- data/pkg/caricature-0.1.0.gem +0 -0
- data/spec/bacon_helper.rb +49 -3
- data/spec/bin/.gitignore +0 -0
- data/spec/core_ext_spec.rb +9 -0
- data/spec/descriptor_spec.rb +142 -0
- data/spec/expectation_spec.rb +11 -7
- data/spec/integration_spec.rb +94 -2
- data/spec/isolation_spec.rb +0 -42
- data/spec/isolator_spec.rb +72 -66
- data/spec/messaging_spec.rb +172 -0
- data/spec/method_call_spec.rb +21 -21
- data/spec/models/ClrModels.cs +185 -0
- data/spec/verification_spec.rb +1 -1
- data/workarounds/ReflectionHelper.cs +30 -0
- metadata +133 -2
@@ -0,0 +1,344 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
<head>
|
6
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
7
|
+
|
8
|
+
<title>Class: Caricature::Expectations</title>
|
9
|
+
|
10
|
+
<link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
|
11
|
+
|
12
|
+
<script src="../js/jquery.js" type="text/javascript"
|
13
|
+
charset="utf-8"></script>
|
14
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
15
|
+
charset="utf-8"></script>
|
16
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
17
|
+
charset="utf-8"></script>
|
18
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
19
|
+
charset="utf-8"></script>
|
20
|
+
|
21
|
+
</head>
|
22
|
+
<body class="class">
|
23
|
+
|
24
|
+
<div id="metadata">
|
25
|
+
<div id="file-metadata">
|
26
|
+
<div id="file-list-section" class="section">
|
27
|
+
<h3 class="section-header">In Files</h3>
|
28
|
+
<div class="section-body">
|
29
|
+
<ul>
|
30
|
+
|
31
|
+
<li><a href="../lib/caricature/expectation_rb.html?TB_iframe=true&height=550&width=785"
|
32
|
+
class="thickbox" title="lib/caricature/expectation.rb">lib/caricature/expectation.rb</a></li>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div id="class-metadata">
|
42
|
+
|
43
|
+
<!-- Parent Class -->
|
44
|
+
|
45
|
+
<div id="parent-class-section" class="section">
|
46
|
+
<h3 class="section-header">Parent</h3>
|
47
|
+
|
48
|
+
<p class="link"><a href="../Object.html">Object</a></p>
|
49
|
+
|
50
|
+
</div>
|
51
|
+
|
52
|
+
|
53
|
+
<!-- Namespace Contents -->
|
54
|
+
|
55
|
+
|
56
|
+
<!-- Method Quickref -->
|
57
|
+
|
58
|
+
<div id="method-list-section" class="section">
|
59
|
+
<h3 class="section-header">Methods</h3>
|
60
|
+
<ul class="link-list">
|
61
|
+
|
62
|
+
<li><a href="#M000016">::new</a></li>
|
63
|
+
|
64
|
+
<li><a href="#M000017">#<<</a></li>
|
65
|
+
|
66
|
+
<li><a href="#M000019">#find</a></li>
|
67
|
+
|
68
|
+
</ul>
|
69
|
+
</div>
|
70
|
+
|
71
|
+
|
72
|
+
<!-- Included Modules -->
|
73
|
+
|
74
|
+
</div>
|
75
|
+
|
76
|
+
<div id="project-metadata">
|
77
|
+
|
78
|
+
|
79
|
+
<div id="fileindex-section" class="section project-section">
|
80
|
+
<h3 class="section-header">Files</h3>
|
81
|
+
<ul>
|
82
|
+
|
83
|
+
<li class="file"><a href="../README_markdown.html">README.markdown</a></li>
|
84
|
+
|
85
|
+
</ul>
|
86
|
+
</div>
|
87
|
+
|
88
|
+
|
89
|
+
<div id="classindex-section" class="section project-section">
|
90
|
+
<h3 class="section-header">Class Index
|
91
|
+
<span class="search-toggle"><img src="../images/find.png"
|
92
|
+
height="16" width="16" alt="[+]"
|
93
|
+
title="show/hide quicksearch" /></span></h3>
|
94
|
+
<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
|
95
|
+
<fieldset>
|
96
|
+
<legend>Quicksearch</legend>
|
97
|
+
<input type="text" name="quicksearch" value=""
|
98
|
+
class="quicksearch-field" />
|
99
|
+
</fieldset>
|
100
|
+
</form>
|
101
|
+
|
102
|
+
<ul class="link-list">
|
103
|
+
|
104
|
+
<li><a href="../Caricature.html">Caricature</a></li>
|
105
|
+
|
106
|
+
<li><a href="../Caricature/ArgumentRecording.html">Caricature::ArgumentRecording</a></li>
|
107
|
+
|
108
|
+
<li><a href="../Caricature/ClrClassDescriptor.html">Caricature::ClrClassDescriptor</a></li>
|
109
|
+
|
110
|
+
<li><a href="../Caricature/ClrClassMessenger.html">Caricature::ClrClassMessenger</a></li>
|
111
|
+
|
112
|
+
<li><a href="../Caricature/ClrInterfaceDescriptor.html">Caricature::ClrInterfaceDescriptor</a></li>
|
113
|
+
|
114
|
+
<li><a href="../Caricature/ClrInterfaceIsolator.html">Caricature::ClrInterfaceIsolator</a></li>
|
115
|
+
|
116
|
+
<li><a href="../Caricature/ClrInterfaceMessenger.html">Caricature::ClrInterfaceMessenger</a></li>
|
117
|
+
|
118
|
+
<li><a href="../Caricature/ClrIsolator.html">Caricature::ClrIsolator</a></li>
|
119
|
+
|
120
|
+
<li><a href="../Caricature/Expectation.html">Caricature::Expectation</a></li>
|
121
|
+
|
122
|
+
<li><a href="../Caricature/ExpectationBuilder.html">Caricature::ExpectationBuilder</a></li>
|
123
|
+
|
124
|
+
<li><a href="../Caricature/ExpectationSyntax.html">Caricature::ExpectationSyntax</a></li>
|
125
|
+
|
126
|
+
<li><a href="../Caricature/Expectations.html">Caricature::Expectations</a></li>
|
127
|
+
|
128
|
+
<li><a href="../Caricature/Interception.html">Caricature::Interception</a></li>
|
129
|
+
|
130
|
+
<li><a href="../Caricature/Interception/ClassMethods.html">Caricature::Interception::ClassMethods</a></li>
|
131
|
+
|
132
|
+
<li><a href="../Caricature/Isolation.html">Caricature::Isolation</a></li>
|
133
|
+
|
134
|
+
<li><a href="../Caricature/Isolator.html">Caricature::Isolator</a></li>
|
135
|
+
|
136
|
+
<li><a href="../Caricature/MemberDescriptor.html">Caricature::MemberDescriptor</a></li>
|
137
|
+
|
138
|
+
<li><a href="../Caricature/Messenger.html">Caricature::Messenger</a></li>
|
139
|
+
|
140
|
+
<li><a href="../Caricature/MethodCallRecorder.html">Caricature::MethodCallRecorder</a></li>
|
141
|
+
|
142
|
+
<li><a href="../Caricature/MethodCallRecording.html">Caricature::MethodCallRecording</a></li>
|
143
|
+
|
144
|
+
<li><a href="../Caricature/RubyIsolator.html">Caricature::RubyIsolator</a></li>
|
145
|
+
|
146
|
+
<li><a href="../Caricature/RubyMessenger.html">Caricature::RubyMessenger</a></li>
|
147
|
+
|
148
|
+
<li><a href="../Caricature/RubyObjectDescriptor.html">Caricature::RubyObjectDescriptor</a></li>
|
149
|
+
|
150
|
+
<li><a href="../Caricature/TypeDescriptor.html">Caricature::TypeDescriptor</a></li>
|
151
|
+
|
152
|
+
<li><a href="../Caricature/Verification.html">Caricature::Verification</a></li>
|
153
|
+
|
154
|
+
<li><a href="../System.html">System</a></li>
|
155
|
+
|
156
|
+
<li><a href="../System/String.html">System::String</a></li>
|
157
|
+
|
158
|
+
<li><a href="../System/Type.html">System::Type</a></li>
|
159
|
+
|
160
|
+
<li><a href="../Array.html">Array</a></li>
|
161
|
+
|
162
|
+
<li><a href="../Class.html">Class</a></li>
|
163
|
+
|
164
|
+
<li><a href="../Hash.html">Hash</a></li>
|
165
|
+
|
166
|
+
<li><a href="../Module.html">Module</a></li>
|
167
|
+
|
168
|
+
<li><a href="../Object.html">Object</a></li>
|
169
|
+
|
170
|
+
<li><a href="../String.html">String</a></li>
|
171
|
+
|
172
|
+
</ul>
|
173
|
+
<div id="no-class-search-results" style="display: none;">No matching classes.</div>
|
174
|
+
</div>
|
175
|
+
|
176
|
+
|
177
|
+
</div>
|
178
|
+
</div>
|
179
|
+
|
180
|
+
<div id="documentation">
|
181
|
+
<h1 class="class">Caricature::Expectations</h1>
|
182
|
+
|
183
|
+
<div id="description">
|
184
|
+
<p>
|
185
|
+
A collection of expectations with some methods to make it easier to work
|
186
|
+
with them. It allows you to add and find expectations based on certain
|
187
|
+
criteria.
|
188
|
+
</p>
|
189
|
+
|
190
|
+
</div>
|
191
|
+
|
192
|
+
<!-- Constants -->
|
193
|
+
|
194
|
+
|
195
|
+
<!-- Attributes -->
|
196
|
+
|
197
|
+
|
198
|
+
<!-- Methods -->
|
199
|
+
|
200
|
+
<div id="public-class-method-details" class="method-section section">
|
201
|
+
<h3 class="section-header">Public Class Methods</h3>
|
202
|
+
|
203
|
+
|
204
|
+
<div id="new-method" class="method-detail ">
|
205
|
+
<a name="M000016"></a>
|
206
|
+
|
207
|
+
<div class="method-heading">
|
208
|
+
|
209
|
+
<span class="method-name">new</span><span
|
210
|
+
class="method-args">()</span>
|
211
|
+
<span class="method-click-advice">click to toggle source</span>
|
212
|
+
|
213
|
+
</div>
|
214
|
+
|
215
|
+
<div class="method-description">
|
216
|
+
|
217
|
+
<p>
|
218
|
+
initializes a new empty instance of the <tt>Expectation</tt> collection
|
219
|
+
</p>
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
<div class="method-source-code"
|
224
|
+
id="new-source">
|
225
|
+
<pre>
|
226
|
+
<span class="ruby-comment cmt"># File lib/caricature/expectation.rb, line 8</span>
|
227
|
+
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>
|
228
|
+
<span class="ruby-ivar">@inner</span> = []
|
229
|
+
<span class="ruby-keyword kw">end</span></pre>
|
230
|
+
</div>
|
231
|
+
|
232
|
+
</div>
|
233
|
+
|
234
|
+
|
235
|
+
</div>
|
236
|
+
|
237
|
+
|
238
|
+
</div>
|
239
|
+
|
240
|
+
<div id="public-instance-method-details" class="method-section section">
|
241
|
+
<h3 class="section-header">Public Instance Methods</h3>
|
242
|
+
|
243
|
+
|
244
|
+
<div id="--method" class="method-detail ">
|
245
|
+
<a name="M000017"></a>
|
246
|
+
|
247
|
+
<div class="method-heading">
|
248
|
+
|
249
|
+
<span class="method-name"><<</span><span
|
250
|
+
class="method-args">(expectation)</span>
|
251
|
+
<span class="method-click-advice">click to toggle source</span>
|
252
|
+
|
253
|
+
</div>
|
254
|
+
|
255
|
+
<div class="method-description">
|
256
|
+
|
257
|
+
<p>
|
258
|
+
Adds an expectation to this collection. From then on it can be found in the
|
259
|
+
collection.
|
260
|
+
</p>
|
261
|
+
|
262
|
+
|
263
|
+
|
264
|
+
<div class="method-source-code"
|
265
|
+
id="--source">
|
266
|
+
<pre>
|
267
|
+
<span class="ruby-comment cmt"># File lib/caricature/expectation.rb, line 13</span>
|
268
|
+
<span class="ruby-keyword kw">def</span> <span class="ruby-operator"><<</span>(<span class="ruby-identifier">expectation</span>)
|
269
|
+
<span class="ruby-ivar">@inner</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">expectation</span>
|
270
|
+
<span class="ruby-keyword kw">end</span></pre>
|
271
|
+
</div>
|
272
|
+
|
273
|
+
</div>
|
274
|
+
|
275
|
+
|
276
|
+
</div>
|
277
|
+
|
278
|
+
|
279
|
+
<div id="find-method" class="method-detail ">
|
280
|
+
<a name="M000019"></a>
|
281
|
+
|
282
|
+
<div class="method-heading">
|
283
|
+
|
284
|
+
<span class="method-name">find</span><span
|
285
|
+
class="method-args">(method_name, *args)</span>
|
286
|
+
<span class="method-click-advice">click to toggle source</span>
|
287
|
+
|
288
|
+
</div>
|
289
|
+
|
290
|
+
<div class="method-description">
|
291
|
+
|
292
|
+
<p>
|
293
|
+
Finds an expectation in the collection. It matches by <tt>method_name</tt>
|
294
|
+
first. Then it tries to figure out if you care about the arguments. You can
|
295
|
+
say you don’t care by providing the symbol <tt>:any</tt> as first
|
296
|
+
argument to this method. When you don’t care the first match is being
|
297
|
+
returned When you specify arguments other than <tt>:any</tt> it will try to
|
298
|
+
match the specified arguments in addition to the method name. It will then
|
299
|
+
also return the first result it can find.
|
300
|
+
</p>
|
301
|
+
|
302
|
+
|
303
|
+
|
304
|
+
<div class="method-source-code"
|
305
|
+
id="find-source">
|
306
|
+
<pre>
|
307
|
+
<span class="ruby-comment cmt"># File lib/caricature/expectation.rb, line 22</span>
|
308
|
+
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">find</span>(<span class="ruby-identifier">method_name</span>, <span class="ruby-operator">*</span><span class="ruby-identifier">args</span>)
|
309
|
+
<span class="ruby-identifier">candidates</span> = <span class="ruby-ivar">@inner</span>.<span class="ruby-identifier">select</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">exp</span><span class="ruby-operator">|</span> <span class="ruby-identifier">exp</span>.<span class="ruby-identifier">method_name</span>.<span class="ruby-identifier">to_s</span>.<span class="ruby-identifier">to_sym</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">method_name</span>.<span class="ruby-identifier">to_s</span>.<span class="ruby-identifier">to_sym</span> }
|
310
|
+
<span class="ruby-identifier">is_single</span> = <span class="ruby-identifier">args</span>.<span class="ruby-identifier">empty?</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">first</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">:any</span> <span class="ruby-operator">||</span> (<span class="ruby-identifier">candidates</span>.<span class="ruby-identifier">size</span> <span class="ruby-operator">==</span> <span class="ruby-value">1</span> <span class="ruby-operator">&&</span> <span class="ruby-identifier">candidates</span>.<span class="ruby-identifier">first</span>.<span class="ruby-identifier">any_args?</span>)
|
311
|
+
<span class="ruby-keyword kw">return</span> <span class="ruby-identifier">candidates</span>.<span class="ruby-identifier">first</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">is_single</span>
|
312
|
+
|
313
|
+
<span class="ruby-identifier">second_pass</span> = <span class="ruby-identifier">candidates</span>.<span class="ruby-identifier">select</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">exp</span><span class="ruby-operator">|</span> <span class="ruby-identifier">exp</span>.<span class="ruby-identifier">args</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">args</span> }
|
314
|
+
<span class="ruby-identifier">second_pass</span>.<span class="ruby-identifier">first</span>
|
315
|
+
<span class="ruby-keyword kw">end</span></pre>
|
316
|
+
</div>
|
317
|
+
|
318
|
+
</div>
|
319
|
+
|
320
|
+
|
321
|
+
</div>
|
322
|
+
|
323
|
+
|
324
|
+
</div>
|
325
|
+
|
326
|
+
|
327
|
+
</div>
|
328
|
+
|
329
|
+
|
330
|
+
<div id="rdoc-debugging-section-dump" class="debugging-section">
|
331
|
+
|
332
|
+
<p>Disabled; run with --debug to generate this.</p>
|
333
|
+
|
334
|
+
</div>
|
335
|
+
|
336
|
+
<div id="validator-badges">
|
337
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
338
|
+
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
339
|
+
Rdoc Generator</a> 1.1.6</small>.</p>
|
340
|
+
</div>
|
341
|
+
|
342
|
+
</body>
|
343
|
+
</html>
|
344
|
+
|
@@ -0,0 +1,246 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
<head>
|
6
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
7
|
+
|
8
|
+
<title>Module: Caricature::Interception::ClassMethods</title>
|
9
|
+
|
10
|
+
<link rel="stylesheet" href="../../rdoc.css" type="text/css" media="screen" />
|
11
|
+
|
12
|
+
<script src="../../js/jquery.js" type="text/javascript"
|
13
|
+
charset="utf-8"></script>
|
14
|
+
<script src="../../js/thickbox-compressed.js" type="text/javascript"
|
15
|
+
charset="utf-8"></script>
|
16
|
+
<script src="../../js/quicksearch.js" type="text/javascript"
|
17
|
+
charset="utf-8"></script>
|
18
|
+
<script src="../../js/darkfish.js" type="text/javascript"
|
19
|
+
charset="utf-8"></script>
|
20
|
+
|
21
|
+
</head>
|
22
|
+
<body class="module">
|
23
|
+
|
24
|
+
<div id="metadata">
|
25
|
+
<div id="file-metadata">
|
26
|
+
<div id="file-list-section" class="section">
|
27
|
+
<h3 class="section-header">In Files</h3>
|
28
|
+
<div class="section-body">
|
29
|
+
<ul>
|
30
|
+
|
31
|
+
<li><a href="../../lib/caricature/isolator_rb.html?TB_iframe=true&height=550&width=785"
|
32
|
+
class="thickbox" title="lib/caricature/isolator.rb">lib/caricature/isolator.rb</a></li>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div id="class-metadata">
|
42
|
+
|
43
|
+
<!-- Parent Class -->
|
44
|
+
|
45
|
+
|
46
|
+
<!-- Namespace Contents -->
|
47
|
+
|
48
|
+
|
49
|
+
<!-- Method Quickref -->
|
50
|
+
|
51
|
+
<div id="method-list-section" class="section">
|
52
|
+
<h3 class="section-header">Methods</h3>
|
53
|
+
<ul class="link-list">
|
54
|
+
|
55
|
+
<li><a href="#M000043">#isolation_context</a></li>
|
56
|
+
|
57
|
+
</ul>
|
58
|
+
</div>
|
59
|
+
|
60
|
+
|
61
|
+
<!-- Included Modules -->
|
62
|
+
|
63
|
+
</div>
|
64
|
+
|
65
|
+
<div id="project-metadata">
|
66
|
+
|
67
|
+
|
68
|
+
<div id="fileindex-section" class="section project-section">
|
69
|
+
<h3 class="section-header">Files</h3>
|
70
|
+
<ul>
|
71
|
+
|
72
|
+
<li class="file"><a href="../../README_markdown.html">README.markdown</a></li>
|
73
|
+
|
74
|
+
</ul>
|
75
|
+
</div>
|
76
|
+
|
77
|
+
|
78
|
+
<div id="classindex-section" class="section project-section">
|
79
|
+
<h3 class="section-header">Class Index
|
80
|
+
<span class="search-toggle"><img src="../../images/find.png"
|
81
|
+
height="16" width="16" alt="[+]"
|
82
|
+
title="show/hide quicksearch" /></span></h3>
|
83
|
+
<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
|
84
|
+
<fieldset>
|
85
|
+
<legend>Quicksearch</legend>
|
86
|
+
<input type="text" name="quicksearch" value=""
|
87
|
+
class="quicksearch-field" />
|
88
|
+
</fieldset>
|
89
|
+
</form>
|
90
|
+
|
91
|
+
<ul class="link-list">
|
92
|
+
|
93
|
+
<li><a href="../../Caricature.html">Caricature</a></li>
|
94
|
+
|
95
|
+
<li><a href="../../Caricature/ArgumentRecording.html">Caricature::ArgumentRecording</a></li>
|
96
|
+
|
97
|
+
<li><a href="../../Caricature/ClrClassDescriptor.html">Caricature::ClrClassDescriptor</a></li>
|
98
|
+
|
99
|
+
<li><a href="../../Caricature/ClrClassMessenger.html">Caricature::ClrClassMessenger</a></li>
|
100
|
+
|
101
|
+
<li><a href="../../Caricature/ClrInterfaceDescriptor.html">Caricature::ClrInterfaceDescriptor</a></li>
|
102
|
+
|
103
|
+
<li><a href="../../Caricature/ClrInterfaceIsolator.html">Caricature::ClrInterfaceIsolator</a></li>
|
104
|
+
|
105
|
+
<li><a href="../../Caricature/ClrInterfaceMessenger.html">Caricature::ClrInterfaceMessenger</a></li>
|
106
|
+
|
107
|
+
<li><a href="../../Caricature/ClrIsolator.html">Caricature::ClrIsolator</a></li>
|
108
|
+
|
109
|
+
<li><a href="../../Caricature/Expectation.html">Caricature::Expectation</a></li>
|
110
|
+
|
111
|
+
<li><a href="../../Caricature/ExpectationBuilder.html">Caricature::ExpectationBuilder</a></li>
|
112
|
+
|
113
|
+
<li><a href="../../Caricature/ExpectationSyntax.html">Caricature::ExpectationSyntax</a></li>
|
114
|
+
|
115
|
+
<li><a href="../../Caricature/Expectations.html">Caricature::Expectations</a></li>
|
116
|
+
|
117
|
+
<li><a href="../../Caricature/Interception.html">Caricature::Interception</a></li>
|
118
|
+
|
119
|
+
<li><a href="../../Caricature/Interception/ClassMethods.html">Caricature::Interception::ClassMethods</a></li>
|
120
|
+
|
121
|
+
<li><a href="../../Caricature/Isolation.html">Caricature::Isolation</a></li>
|
122
|
+
|
123
|
+
<li><a href="../../Caricature/Isolator.html">Caricature::Isolator</a></li>
|
124
|
+
|
125
|
+
<li><a href="../../Caricature/MemberDescriptor.html">Caricature::MemberDescriptor</a></li>
|
126
|
+
|
127
|
+
<li><a href="../../Caricature/Messenger.html">Caricature::Messenger</a></li>
|
128
|
+
|
129
|
+
<li><a href="../../Caricature/MethodCallRecorder.html">Caricature::MethodCallRecorder</a></li>
|
130
|
+
|
131
|
+
<li><a href="../../Caricature/MethodCallRecording.html">Caricature::MethodCallRecording</a></li>
|
132
|
+
|
133
|
+
<li><a href="../../Caricature/RubyIsolator.html">Caricature::RubyIsolator</a></li>
|
134
|
+
|
135
|
+
<li><a href="../../Caricature/RubyMessenger.html">Caricature::RubyMessenger</a></li>
|
136
|
+
|
137
|
+
<li><a href="../../Caricature/RubyObjectDescriptor.html">Caricature::RubyObjectDescriptor</a></li>
|
138
|
+
|
139
|
+
<li><a href="../../Caricature/TypeDescriptor.html">Caricature::TypeDescriptor</a></li>
|
140
|
+
|
141
|
+
<li><a href="../../Caricature/Verification.html">Caricature::Verification</a></li>
|
142
|
+
|
143
|
+
<li><a href="../../System.html">System</a></li>
|
144
|
+
|
145
|
+
<li><a href="../../System/String.html">System::String</a></li>
|
146
|
+
|
147
|
+
<li><a href="../../System/Type.html">System::Type</a></li>
|
148
|
+
|
149
|
+
<li><a href="../../Array.html">Array</a></li>
|
150
|
+
|
151
|
+
<li><a href="../../Class.html">Class</a></li>
|
152
|
+
|
153
|
+
<li><a href="../../Hash.html">Hash</a></li>
|
154
|
+
|
155
|
+
<li><a href="../../Module.html">Module</a></li>
|
156
|
+
|
157
|
+
<li><a href="../../Object.html">Object</a></li>
|
158
|
+
|
159
|
+
<li><a href="../../String.html">String</a></li>
|
160
|
+
|
161
|
+
</ul>
|
162
|
+
<div id="no-class-search-results" style="display: none;">No matching classes.</div>
|
163
|
+
</div>
|
164
|
+
|
165
|
+
|
166
|
+
</div>
|
167
|
+
</div>
|
168
|
+
|
169
|
+
<div id="documentation">
|
170
|
+
<h1 class="module">Caricature::Interception::ClassMethods</h1>
|
171
|
+
|
172
|
+
<div id="description">
|
173
|
+
<p>
|
174
|
+
the class methods of this intercepting object
|
175
|
+
</p>
|
176
|
+
|
177
|
+
</div>
|
178
|
+
|
179
|
+
<!-- Constants -->
|
180
|
+
|
181
|
+
|
182
|
+
<!-- Attributes -->
|
183
|
+
|
184
|
+
|
185
|
+
<!-- Methods -->
|
186
|
+
|
187
|
+
<div id="public-instance-method-details" class="method-section section">
|
188
|
+
<h3 class="section-header">Public Instance Methods</h3>
|
189
|
+
|
190
|
+
|
191
|
+
<div id="isolation-context-method" class="method-detail ">
|
192
|
+
<a name="M000043"></a>
|
193
|
+
|
194
|
+
<div class="method-heading">
|
195
|
+
|
196
|
+
<span class="method-name">isolation_context</span><span
|
197
|
+
class="method-args">()</span>
|
198
|
+
<span class="method-click-advice">click to toggle source</span>
|
199
|
+
|
200
|
+
</div>
|
201
|
+
|
202
|
+
<div class="method-description">
|
203
|
+
|
204
|
+
<p>
|
205
|
+
the context of this isolation instance. this context takes care of
|
206
|
+
responding to method calls etc.
|
207
|
+
</p>
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
<div class="method-source-code"
|
212
|
+
id="isolation-context-source">
|
213
|
+
<pre>
|
214
|
+
<span class="ruby-comment cmt"># File lib/caricature/isolator.rb, line 15</span>
|
215
|
+
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">isolation_context</span>
|
216
|
+
<span class="ruby-ivar">@___context___</span>
|
217
|
+
<span class="ruby-keyword kw">end</span></pre>
|
218
|
+
</div>
|
219
|
+
|
220
|
+
</div>
|
221
|
+
|
222
|
+
|
223
|
+
</div>
|
224
|
+
|
225
|
+
|
226
|
+
</div>
|
227
|
+
|
228
|
+
|
229
|
+
</div>
|
230
|
+
|
231
|
+
|
232
|
+
<div id="rdoc-debugging-section-dump" class="debugging-section">
|
233
|
+
|
234
|
+
<p>Disabled; run with --debug to generate this.</p>
|
235
|
+
|
236
|
+
</div>
|
237
|
+
|
238
|
+
<div id="validator-badges">
|
239
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
240
|
+
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
241
|
+
Rdoc Generator</a> 1.1.6</small>.</p>
|
242
|
+
</div>
|
243
|
+
|
244
|
+
</body>
|
245
|
+
</html>
|
246
|
+
|