caricature 0.6.1 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +3 -2
- data/VERSION +1 -1
- data/caricature.gemspec +30 -24
- data/lib/caricature/clr/aspnet_mvc.rb +4 -0
- data/lib/caricature/clr/descriptor.rb +37 -9
- data/lib/caricature/expectation.rb +4 -12
- data/lib/caricature/isolation.rb +0 -1
- data/spec/integration/clr_to_clr_spec.rb +254 -0
- data/spec/integration/clr_to_ruby_spec.rb +228 -0
- data/spec/integration/indexer_spec.rb +28 -0
- data/spec/integration/ruby_to_ruby_spec.rb +260 -0
- data/spec/models/ClrModels.cs +32 -0
- data/spec/{core_ext_spec.rb → unit/core_ext_spec.rb} +1 -1
- data/spec/{descriptor_spec.rb → unit/descriptor_spec.rb} +19 -1
- data/spec/{expectation_spec.rb → unit/expectation_spec.rb} +1 -1
- data/spec/{interop_spec.rb → unit/interop_spec.rb} +1 -1
- data/spec/{isolation_spec.rb → unit/isolation_spec.rb} +1 -1
- data/spec/{isolator_spec.rb → unit/isolator_spec.rb} +1 -1
- data/spec/{messaging_spec.rb → unit/messaging_spec.rb} +1 -1
- data/spec/{method_call_spec.rb → unit/method_call_spec.rb} +1 -1
- data/spec/{sword_spec.rb → unit/sword_spec.rb} +1 -1
- data/spec/{verification_spec.rb → unit/verification_spec.rb} +1 -1
- metadata +30 -24
- data/spec/integration_spec.rb +0 -726
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: caricature
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Porto Carrero
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-07-10 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -145,18 +145,21 @@ files:
|
|
145
145
|
- pkg/caricature-0.6.0.gem
|
146
146
|
- spec/bacon_helper.rb
|
147
147
|
- spec/bin/.gitignore
|
148
|
-
- spec/
|
149
|
-
- spec/
|
150
|
-
- spec/
|
151
|
-
- spec/
|
152
|
-
- spec/interop_spec.rb
|
153
|
-
- spec/isolation_spec.rb
|
154
|
-
- spec/isolator_spec.rb
|
155
|
-
- spec/messaging_spec.rb
|
156
|
-
- spec/method_call_spec.rb
|
148
|
+
- spec/integration/clr_to_clr_spec.rb
|
149
|
+
- spec/integration/clr_to_ruby_spec.rb
|
150
|
+
- spec/integration/indexer_spec.rb
|
151
|
+
- spec/integration/ruby_to_ruby_spec.rb
|
157
152
|
- spec/models/ClrModels.cs
|
158
|
-
- spec/
|
159
|
-
- spec/
|
153
|
+
- spec/unit/core_ext_spec.rb
|
154
|
+
- spec/unit/descriptor_spec.rb
|
155
|
+
- spec/unit/expectation_spec.rb
|
156
|
+
- spec/unit/interop_spec.rb
|
157
|
+
- spec/unit/isolation_spec.rb
|
158
|
+
- spec/unit/isolator_spec.rb
|
159
|
+
- spec/unit/messaging_spec.rb
|
160
|
+
- spec/unit/method_call_spec.rb
|
161
|
+
- spec/unit/sword_spec.rb
|
162
|
+
- spec/unit/verification_spec.rb
|
160
163
|
- workarounds/ReflectionHelper.cs
|
161
164
|
has_rdoc: true
|
162
165
|
homepage: http://github.com/casualjim/caricature
|
@@ -188,14 +191,17 @@ specification_version: 3
|
|
188
191
|
summary: Caricature - Bringing simple mocking to the DLR
|
189
192
|
test_files:
|
190
193
|
- spec/bacon_helper.rb
|
191
|
-
- spec/
|
192
|
-
- spec/
|
193
|
-
- spec/
|
194
|
-
- spec/
|
195
|
-
- spec/
|
196
|
-
- spec/
|
197
|
-
- spec/
|
198
|
-
- spec/
|
199
|
-
- spec/
|
200
|
-
- spec/
|
201
|
-
- spec/
|
194
|
+
- spec/integration/clr_to_clr_spec.rb
|
195
|
+
- spec/integration/clr_to_ruby_spec.rb
|
196
|
+
- spec/integration/indexer_spec.rb
|
197
|
+
- spec/integration/ruby_to_ruby_spec.rb
|
198
|
+
- spec/unit/core_ext_spec.rb
|
199
|
+
- spec/unit/descriptor_spec.rb
|
200
|
+
- spec/unit/expectation_spec.rb
|
201
|
+
- spec/unit/interop_spec.rb
|
202
|
+
- spec/unit/isolation_spec.rb
|
203
|
+
- spec/unit/isolator_spec.rb
|
204
|
+
- spec/unit/messaging_spec.rb
|
205
|
+
- spec/unit/method_call_spec.rb
|
206
|
+
- spec/unit/sword_spec.rb
|
207
|
+
- spec/unit/verification_spec.rb
|