mcmire-matchy 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- 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 +52 -0
- data/VERSION +1 -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 +74 -0
- data/lib/matchy/built_in/operator_expectations.rb +48 -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/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 +156 -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 +167 -0
- data/test/test_truth_expectations.rb +373 -0
- metadata +104 -0
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mcmire-matchy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeremy McAnally
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-01-01 00:00:00 -06: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
|
+
- README.rdoc
|
25
|
+
files:
|
26
|
+
- .gitignore
|
27
|
+
- History.txt
|
28
|
+
- License.txt
|
29
|
+
- Manifest.txt
|
30
|
+
- PostInstall.txt
|
31
|
+
- README.rdoc
|
32
|
+
- Rakefile
|
33
|
+
- VERSION
|
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://github.com/mcmire/matchy
|
66
|
+
licenses: []
|
67
|
+
|
68
|
+
post_install_message:
|
69
|
+
rdoc_options:
|
70
|
+
- --charset=UTF-8
|
71
|
+
require_paths:
|
72
|
+
- lib
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: "0"
|
78
|
+
version:
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: "0"
|
84
|
+
version:
|
85
|
+
requirements: []
|
86
|
+
|
87
|
+
rubyforge_project:
|
88
|
+
rubygems_version: 1.3.5
|
89
|
+
signing_key:
|
90
|
+
specification_version: 3
|
91
|
+
summary: RSpec-esque matchers for use in Test::Unit
|
92
|
+
test_files:
|
93
|
+
- test/all.rb
|
94
|
+
- test/ruby1.9.compatibility_tests.rb
|
95
|
+
- test/test_change_expectation.rb
|
96
|
+
- test/test_custom_matcher.rb
|
97
|
+
- test/test_enumerable_expectations.rb
|
98
|
+
- test/test_error_expectations.rb
|
99
|
+
- test/test_expectation_builder.rb
|
100
|
+
- test/test_helper.rb
|
101
|
+
- test/test_matcher_builder.rb
|
102
|
+
- test/test_modals.rb
|
103
|
+
- test/test_operator_expectations.rb
|
104
|
+
- test/test_truth_expectations.rb
|