mattly-minitest 1.4.2.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/.autotest +15 -0
- data/History.txt +175 -0
- data/Manifest.txt +13 -0
- data/README.txt +60 -0
- data/Rakefile +42 -0
- data/design_rationale.rb +52 -0
- data/lib/minitest/autorun.rb +5 -0
- data/lib/minitest/mock.rb +31 -0
- data/lib/minitest/spec.rb +125 -0
- data/lib/minitest/unit.rb +530 -0
- data/test/test_mini_mock.rb +77 -0
- data/test/test_mini_spec.rb +202 -0
- data/test/test_mini_test.rb +980 -0
- metadata +69 -0
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mattly-minitest
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.2.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ryan Davis
|
8
|
+
- Matt Lyon
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2009-07-19 00:00:00 -07:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: minitest/unit is a small and fast replacement for ruby's huge and slow test/unit. This is meant to be clean and easy to use both as a regular test writer and for language implementors that need a minimal set of methods to bootstrap a working unit test suite. mini/spec is a functionally complete spec engine. mini/mock, by Steven Baker, is a beautifully tiny mock object framework. (This package was called miniunit once upon a time) -- (this gem as maintained by Matt Lyon contains patches and extensions to minitest/spec that will apparently never make it upstream. Go Open Source!)
|
18
|
+
email: matt@flowerpowered.com
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files:
|
24
|
+
- README.txt
|
25
|
+
- History.txt
|
26
|
+
- Manifest.txt
|
27
|
+
files:
|
28
|
+
- .autotest
|
29
|
+
- History.txt
|
30
|
+
- Manifest.txt
|
31
|
+
- README.txt
|
32
|
+
- Rakefile
|
33
|
+
- design_rationale.rb
|
34
|
+
- lib/minitest/autorun.rb
|
35
|
+
- lib/minitest/mock.rb
|
36
|
+
- lib/minitest/spec.rb
|
37
|
+
- lib/minitest/unit.rb
|
38
|
+
- test/test_mini_mock.rb
|
39
|
+
- test/test_mini_spec.rb
|
40
|
+
- test/test_mini_test.rb
|
41
|
+
has_rdoc: true
|
42
|
+
homepage: http://github.com/mattly/minitest
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options:
|
45
|
+
- --main
|
46
|
+
- README.txt
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: "0"
|
54
|
+
version:
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
60
|
+
version:
|
61
|
+
requirements: []
|
62
|
+
|
63
|
+
rubyforge_project:
|
64
|
+
rubygems_version: 1.2.0
|
65
|
+
signing_key:
|
66
|
+
specification_version: 2
|
67
|
+
summary: minitest/unit is a small and fast replacement for ruby's huge and slow test/unit
|
68
|
+
test_files: []
|
69
|
+
|