jnunemaker-matchy 0.4.0
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/History.txt +4 -0
- data/License.txt +20 -0
- data/Manifest.txt +36 -0
- data/PostInstall.txt +7 -0
- data/README.rdoc +162 -0
- data/Rakefile +4 -0
- data/config/hoe.rb +73 -0
- data/config/requirements.rb +15 -0
- data/countloc.rb +67 -0
- data/lib/matchy.rb +19 -0
- data/lib/matchy/built_in/change_expectations.rb +31 -0
- data/lib/matchy/built_in/enumerable_expectations.rb +41 -0
- data/lib/matchy/built_in/error_expectations.rb +66 -0
- data/lib/matchy/built_in/operator_expectations.rb +42 -0
- data/lib/matchy/built_in/truth_expectations.rb +146 -0
- data/lib/matchy/custom_matcher.rb +10 -0
- data/lib/matchy/expectation_builder.rb +9 -0
- data/lib/matchy/matcher_builder.rb +51 -0
- data/lib/matchy/modals.rb +34 -0
- data/lib/matchy/version.rb +9 -0
- data/matchy.gemspec +26 -0
- data/setup.rb +1585 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/test/all.rb +7 -0
- data/test/ruby1.9.compatibility_tests.rb +541 -0
- data/test/test_change_expectation.rb +63 -0
- data/test/test_custom_matcher.rb +139 -0
- data/test/test_enumerable_expectations.rb +91 -0
- data/test/test_error_expectations.rb +144 -0
- data/test/test_expectation_builder.rb +28 -0
- data/test/test_helper.rb +1 -0
- data/test/test_matcher_builder.rb +72 -0
- data/test/test_modals.rb +39 -0
- data/test/test_operator_expectations.rb +157 -0
- data/test/test_truth_expectations.rb +373 -0
- metadata +109 -0
metadata
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jnunemaker-matchy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeremy McAnally
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-03-23 00:00:00 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: RSpec-esque matchers for use in Test::Unit
|
17
|
+
email:
|
18
|
+
- jeremy@entp.com
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files:
|
24
|
+
- History.txt
|
25
|
+
- Manifest.txt
|
26
|
+
- README.rdoc
|
27
|
+
files:
|
28
|
+
- History.txt
|
29
|
+
- License.txt
|
30
|
+
- Manifest.txt
|
31
|
+
- PostInstall.txt
|
32
|
+
- README.rdoc
|
33
|
+
- Rakefile
|
34
|
+
- config/hoe.rb
|
35
|
+
- config/requirements.rb
|
36
|
+
- countloc.rb
|
37
|
+
- lib/matchy.rb
|
38
|
+
- lib/matchy/built_in/change_expectations.rb
|
39
|
+
- lib/matchy/built_in/enumerable_expectations.rb
|
40
|
+
- lib/matchy/built_in/error_expectations.rb
|
41
|
+
- lib/matchy/built_in/operator_expectations.rb
|
42
|
+
- lib/matchy/built_in/truth_expectations.rb
|
43
|
+
- lib/matchy/custom_matcher.rb
|
44
|
+
- lib/matchy/expectation_builder.rb
|
45
|
+
- lib/matchy/matcher_builder.rb
|
46
|
+
- lib/matchy/modals.rb
|
47
|
+
- lib/matchy/version.rb
|
48
|
+
- matchy.gemspec
|
49
|
+
- setup.rb
|
50
|
+
- tasks/deployment.rake
|
51
|
+
- tasks/environment.rake
|
52
|
+
- test/all.rb
|
53
|
+
- test/ruby1.9.compatibility_tests.rb
|
54
|
+
- test/test_change_expectation.rb
|
55
|
+
- test/test_custom_matcher.rb
|
56
|
+
- test/test_enumerable_expectations.rb
|
57
|
+
- test/test_error_expectations.rb
|
58
|
+
- test/test_expectation_builder.rb
|
59
|
+
- test/test_helper.rb
|
60
|
+
- test/test_matcher_builder.rb
|
61
|
+
- test/test_modals.rb
|
62
|
+
- test/test_operator_expectations.rb
|
63
|
+
- test/test_truth_expectations.rb
|
64
|
+
has_rdoc: true
|
65
|
+
homepage: http://matchy.rubyforge.org
|
66
|
+
licenses: []
|
67
|
+
|
68
|
+
post_install_message: |+
|
69
|
+
|
70
|
+
For more information on matchy, see http://matchy.rubyforge.org
|
71
|
+
|
72
|
+
NOTE: Change this information in PostInstall.txt
|
73
|
+
You can also delete it if you don't want it.
|
74
|
+
|
75
|
+
rdoc_options:
|
76
|
+
- --main
|
77
|
+
- README.rdoc
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: "0"
|
85
|
+
version:
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: "0"
|
91
|
+
version:
|
92
|
+
requirements: []
|
93
|
+
|
94
|
+
rubyforge_project: matchy
|
95
|
+
rubygems_version: 1.3.5
|
96
|
+
signing_key:
|
97
|
+
specification_version: 3
|
98
|
+
summary: RSpec-esque matchers for use in Test::Unit
|
99
|
+
test_files:
|
100
|
+
- test/test_change_expectation.rb
|
101
|
+
- test/test_custom_matcher.rb
|
102
|
+
- test/test_enumerable_expectations.rb
|
103
|
+
- test/test_error_expectations.rb
|
104
|
+
- test/test_expectation_builder.rb
|
105
|
+
- test/test_helper.rb
|
106
|
+
- test/test_matcher_builder.rb
|
107
|
+
- test/test_modals.rb
|
108
|
+
- test/test_operator_expectations.rb
|
109
|
+
- test/test_truth_expectations.rb
|