flexmock 0.1.1
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/CHANGELOG +18 -0
- data/README +214 -0
- data/Rakefile +128 -0
- data/flexmock.blurb +10 -0
- data/install.rb +43 -0
- data/lib/flexmock.rb +485 -0
- data/test/test_example.rb +26 -0
- data/test/test_mock.rb +171 -0
- data/test/test_naming.rb +42 -0
- data/test/test_samples.rb +43 -0
- data/test/test_should_receive.rb +443 -0
- metadata +57 -0
metadata
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11.3
|
3
|
+
specification_version: 1
|
4
|
+
name: flexmock
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.1
|
7
|
+
date: 2005-10-25 00:00:00 -04:00
|
8
|
+
summary: Simple and Flexible Mock Objects for Testing
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: jim@weirichhouse.org
|
12
|
+
homepage: http://http://onestepback.org
|
13
|
+
rubyforge_project:
|
14
|
+
description: "FlexMock is a extremely simple mock object class compatible with the Test::Unit
|
15
|
+
framework. Although the FlexMock's interface is simple, it is very flexible."
|
16
|
+
autorequire: flexmock
|
17
|
+
default_executable:
|
18
|
+
bindir: bin
|
19
|
+
has_rdoc: true
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
|
+
requirements:
|
22
|
+
-
|
23
|
+
- ">"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 0.0.0
|
26
|
+
version:
|
27
|
+
platform: ruby
|
28
|
+
signing_key:
|
29
|
+
cert_chain:
|
30
|
+
authors:
|
31
|
+
- Jim Weirich
|
32
|
+
files:
|
33
|
+
- README
|
34
|
+
- Rakefile
|
35
|
+
- CHANGELOG
|
36
|
+
- lib/flexmock.rb
|
37
|
+
- test/test_mock.rb
|
38
|
+
- test/test_example.rb
|
39
|
+
- test/test_naming.rb
|
40
|
+
- test/test_samples.rb
|
41
|
+
- test/test_should_receive.rb
|
42
|
+
- flexmock.blurb
|
43
|
+
- install.rb
|
44
|
+
test_files: []
|
45
|
+
rdoc_options:
|
46
|
+
- "--title"
|
47
|
+
- Flex Mock
|
48
|
+
- "--main"
|
49
|
+
- README
|
50
|
+
- "--line-numbers"
|
51
|
+
extra_rdoc_files:
|
52
|
+
- README
|
53
|
+
- CHANGELOG
|
54
|
+
executables: []
|
55
|
+
extensions: []
|
56
|
+
requirements: []
|
57
|
+
dependencies: []
|