lemon 0.8.2 → 0.8.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.ruby +55 -0
- data/APACHE2.txt +206 -0
- data/HISTORY.rdoc +12 -0
- data/NOTICE.rdoc +16 -0
- data/bin/lemon +1 -1
- data/demo/case_example_error.rb +10 -0
- data/{test/cli → features}/coverage.feature +0 -0
- data/{test/cli → features}/generate.feature +0 -0
- data/{test/cli → features}/step_definitions/coverage_steps.rb +0 -0
- data/{test/cli → features}/support/ae.rb +0 -0
- data/{test/cli → features}/support/aruba.rb +0 -0
- data/{test/cli → features}/test.feature +0 -0
- data/lib/lemon.rb +19 -1
- data/lib/lemon.yml +55 -0
- data/lib/lemon/cli.rb +0 -1
- data/lib/lemon/controller/test_runner.rb +12 -3
- data/lib/lemon/model/test_case.rb +4 -2
- data/lib/lemon/model/test_unit.rb +45 -2
- data/lib/lemon/view/test_reports/abstract.rb +107 -0
- data/lib/lemon/view/test_reports/tapj.rb +130 -0
- data/lib/lemon/view/test_reports/tapy.rb +141 -0
- data/qed/applique/fs.rb +21 -0
- data/{test/api/coverage/complete.rdoc → qed/coverage/01_complete.rdoc} +9 -9
- data/qed/coverage/02_incomplete.rdoc +97 -0
- data/{test/api/coverage/extensions.rdoc → qed/coverage/03_extensions.rdoc} +5 -5
- data/test/{unit/case_coverage_analyzer.rb → case_coverage_analyzer.rb} +0 -0
- data/test/{unit/case_test_case_dsl.rb → case_test_case_dsl.rb} +0 -0
- data/test/fixtures/case_complete.rb +5 -1
- data/test/runner +1 -2
- metadata +31 -39
- data/LICENSE +0 -22
- data/lib/lemon/meta/data.rb +0 -29
- data/lib/lemon/meta/gemfile +0 -24
- data/lib/lemon/meta/profile +0 -17
- data/meta/data.rb +0 -29
- data/meta/gemfile +0 -24
- data/meta/profile +0 -17
- data/test/api/applique/fs.rb +0 -18
- data/test/api/coverage/incomplete.rdoc +0 -97
data/.ruby
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
---
|
2
|
+
spec_version: 1.0.0
|
3
|
+
replaces: []
|
4
|
+
|
5
|
+
loadpath:
|
6
|
+
- lib
|
7
|
+
name: lemon
|
8
|
+
repositories: {}
|
9
|
+
|
10
|
+
conflicts: []
|
11
|
+
|
12
|
+
engine_check: []
|
13
|
+
|
14
|
+
title: Lemon
|
15
|
+
contact: trans <transfire@gmail.com>
|
16
|
+
resources:
|
17
|
+
repository: git://github.com/proutils/lemon.git
|
18
|
+
home: http://proutils.github.com/lemon
|
19
|
+
maintainers: []
|
20
|
+
|
21
|
+
requires:
|
22
|
+
- group: []
|
23
|
+
|
24
|
+
name: ae
|
25
|
+
version: 0+
|
26
|
+
- group:
|
27
|
+
- build
|
28
|
+
name: redline
|
29
|
+
version: 0+
|
30
|
+
- group:
|
31
|
+
- build
|
32
|
+
name: reap
|
33
|
+
version: 0+
|
34
|
+
- group:
|
35
|
+
- test
|
36
|
+
name: qed
|
37
|
+
version: 0+
|
38
|
+
- group:
|
39
|
+
- test
|
40
|
+
name: cucumber
|
41
|
+
version: 0+
|
42
|
+
- group:
|
43
|
+
- test
|
44
|
+
name: aruba
|
45
|
+
version: 0+
|
46
|
+
suite: proutils
|
47
|
+
manifest: MANIFEST
|
48
|
+
version: 0.8.3
|
49
|
+
licenses:
|
50
|
+
- Apache 2.0
|
51
|
+
copyright: Copyright 2009 Thomas Sawyer
|
52
|
+
authors:
|
53
|
+
- Thomas Sawyer
|
54
|
+
description: Lemon is a unit testing framework that tightly correlates class to test case and method to test unit.
|
55
|
+
summary: Pucker-tight Unit Testing
|
data/APACHE2.txt
ADDED
@@ -0,0 +1,206 @@
|
|
1
|
+
Lemon is open-source software distributed under the terms of the following license:
|
2
|
+
|
3
|
+
|
4
|
+
Apache License
|
5
|
+
Version 2.0, January 2004
|
6
|
+
http://www.apache.org/licenses/
|
7
|
+
|
8
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
9
|
+
|
10
|
+
1. Definitions.
|
11
|
+
|
12
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
13
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
14
|
+
|
15
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
16
|
+
the copyright owner that is granting the License.
|
17
|
+
|
18
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
19
|
+
other entities that control, are controlled by, or are under common
|
20
|
+
control with that entity. For the purposes of this definition,
|
21
|
+
"control" means (i) the power, direct or indirect, to cause the
|
22
|
+
direction or management of such entity, whether by contract or
|
23
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
24
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
25
|
+
|
26
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
27
|
+
exercising permissions granted by this License.
|
28
|
+
|
29
|
+
"Source" form shall mean the preferred form for making modifications,
|
30
|
+
including but not limited to software source code, documentation
|
31
|
+
source, and configuration files.
|
32
|
+
|
33
|
+
"Object" form shall mean any form resulting from mechanical
|
34
|
+
transformation or translation of a Source form, including but
|
35
|
+
not limited to compiled object code, generated documentation,
|
36
|
+
and conversions to other media types.
|
37
|
+
|
38
|
+
"Work" shall mean the work of authorship, whether in Source or
|
39
|
+
Object form, made available under the License, as indicated by a
|
40
|
+
copyright notice that is included in or attached to the work
|
41
|
+
(an example is provided in the Appendix below).
|
42
|
+
|
43
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
44
|
+
form, that is based on (or derived from) the Work and for which the
|
45
|
+
editorial revisions, annotations, elaborations, or other modifications
|
46
|
+
represent, as a whole, an original work of authorship. For the purposes
|
47
|
+
of this License, Derivative Works shall not include works that remain
|
48
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
49
|
+
the Work and Derivative Works thereof.
|
50
|
+
|
51
|
+
"Contribution" shall mean any work of authorship, including
|
52
|
+
the original version of the Work and any modifications or additions
|
53
|
+
to that Work or Derivative Works thereof, that is intentionally
|
54
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
55
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
56
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
57
|
+
means any form of electronic, verbal, or written communication sent
|
58
|
+
to the Licensor or its representatives, including but not limited to
|
59
|
+
communication on electronic mailing lists, source code control systems,
|
60
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
61
|
+
Licensor for the purpose of discussing and improving the Work, but
|
62
|
+
excluding communication that is conspicuously marked or otherwise
|
63
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
64
|
+
|
65
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
66
|
+
on behalf of whom a Contribution has been received by Licensor and
|
67
|
+
subsequently incorporated within the Work.
|
68
|
+
|
69
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
70
|
+
this License, each Contributor hereby grants to You a perpetual,
|
71
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
72
|
+
copyright license to reproduce, prepare Derivative Works of,
|
73
|
+
publicly display, publicly perform, sublicense, and distribute the
|
74
|
+
Work and such Derivative Works in Source or Object form.
|
75
|
+
|
76
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
77
|
+
this License, each Contributor hereby grants to You a perpetual,
|
78
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
79
|
+
(except as stated in this section) patent license to make, have made,
|
80
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
81
|
+
where such license applies only to those patent claims licensable
|
82
|
+
by such Contributor that are necessarily infringed by their
|
83
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
84
|
+
with the Work to which such Contribution(s) was submitted. If You
|
85
|
+
institute patent litigation against any entity (including a
|
86
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
87
|
+
or a Contribution incorporated within the Work constitutes direct
|
88
|
+
or contributory patent infringement, then any patent licenses
|
89
|
+
granted to You under this License for that Work shall terminate
|
90
|
+
as of the date such litigation is filed.
|
91
|
+
|
92
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
93
|
+
Work or Derivative Works thereof in any medium, with or without
|
94
|
+
modifications, and in Source or Object form, provided that You
|
95
|
+
meet the following conditions:
|
96
|
+
|
97
|
+
(a) You must give any other recipients of the Work or
|
98
|
+
Derivative Works a copy of this License; and
|
99
|
+
|
100
|
+
(b) You must cause any modified files to carry prominent notices
|
101
|
+
stating that You changed the files; and
|
102
|
+
|
103
|
+
(c) You must retain, in the Source form of any Derivative Works
|
104
|
+
that You distribute, all copyright, patent, trademark, and
|
105
|
+
attribution notices from the Source form of the Work,
|
106
|
+
excluding those notices that do not pertain to any part of
|
107
|
+
the Derivative Works; and
|
108
|
+
|
109
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
110
|
+
distribution, then any Derivative Works that You distribute must
|
111
|
+
include a readable copy of the attribution notices contained
|
112
|
+
within such NOTICE file, excluding those notices that do not
|
113
|
+
pertain to any part of the Derivative Works, in at least one
|
114
|
+
of the following places: within a NOTICE text file distributed
|
115
|
+
as part of the Derivative Works; within the Source form or
|
116
|
+
documentation, if provided along with the Derivative Works; or,
|
117
|
+
within a display generated by the Derivative Works, if and
|
118
|
+
wherever such third-party notices normally appear. The contents
|
119
|
+
of the NOTICE file are for informational purposes only and
|
120
|
+
do not modify the License. You may add Your own attribution
|
121
|
+
notices within Derivative Works that You distribute, alongside
|
122
|
+
or as an addendum to the NOTICE text from the Work, provided
|
123
|
+
that such additional attribution notices cannot be construed
|
124
|
+
as modifying the License.
|
125
|
+
|
126
|
+
You may add Your own copyright statement to Your modifications and
|
127
|
+
may provide additional or different license terms and conditions
|
128
|
+
for use, reproduction, or distribution of Your modifications, or
|
129
|
+
for any such Derivative Works as a whole, provided Your use,
|
130
|
+
reproduction, and distribution of the Work otherwise complies with
|
131
|
+
the conditions stated in this License.
|
132
|
+
|
133
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
134
|
+
any Contribution intentionally submitted for inclusion in the Work
|
135
|
+
by You to the Licensor shall be under the terms and conditions of
|
136
|
+
this License, without any additional terms or conditions.
|
137
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
138
|
+
the terms of any separate license agreement you may have executed
|
139
|
+
with Licensor regarding such Contributions.
|
140
|
+
|
141
|
+
6. Trademarks. This License does not grant permission to use the trade
|
142
|
+
names, trademarks, service marks, or product names of the Licensor,
|
143
|
+
except as required for reasonable and customary use in describing the
|
144
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
145
|
+
|
146
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
147
|
+
agreed to in writing, Licensor provides the Work (and each
|
148
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
149
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
150
|
+
implied, including, without limitation, any warranties or conditions
|
151
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
152
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
153
|
+
appropriateness of using or redistributing the Work and assume any
|
154
|
+
risks associated with Your exercise of permissions under this License.
|
155
|
+
|
156
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
157
|
+
whether in tort (including negligence), contract, or otherwise,
|
158
|
+
unless required by applicable law (such as deliberate and grossly
|
159
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
160
|
+
liable to You for damages, including any direct, indirect, special,
|
161
|
+
incidental, or consequential damages of any character arising as a
|
162
|
+
result of this License or out of the use or inability to use the
|
163
|
+
Work (including but not limited to damages for loss of goodwill,
|
164
|
+
work stoppage, computer failure or malfunction, or any and all
|
165
|
+
other commercial damages or losses), even if such Contributor
|
166
|
+
has been advised of the possibility of such damages.
|
167
|
+
|
168
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
169
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
170
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
171
|
+
or other liability obligations and/or rights consistent with this
|
172
|
+
License. However, in accepting such obligations, You may act only
|
173
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
174
|
+
of any other Contributor, and only if You agree to indemnify,
|
175
|
+
defend, and hold each Contributor harmless for any liability
|
176
|
+
incurred by, or claims asserted against, such Contributor by reason
|
177
|
+
of your accepting any such warranty or additional liability.
|
178
|
+
|
179
|
+
END OF TERMS AND CONDITIONS
|
180
|
+
|
181
|
+
APPENDIX: How to apply the Apache License to your work.
|
182
|
+
|
183
|
+
To apply the Apache License to your work, attach the following
|
184
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
185
|
+
replaced with your own identifying information. (Don't include
|
186
|
+
the brackets!) The text should be enclosed in the appropriate
|
187
|
+
comment syntax for the file format. We also recommend that a
|
188
|
+
file or class name and description of purpose be included on the
|
189
|
+
same "printed page" as the copyright notice for easier
|
190
|
+
identification within third-party archives.
|
191
|
+
|
192
|
+
Copyright [yyyy] [name of copyright owner]
|
193
|
+
|
194
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
195
|
+
you may not use this file except in compliance with the License.
|
196
|
+
You may obtain a copy of the License at
|
197
|
+
|
198
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
199
|
+
|
200
|
+
Unless required by applicable law or agreed to in writing, software
|
201
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
202
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
203
|
+
See the License for the specific language governing permissions and
|
204
|
+
limitations under the License.
|
205
|
+
|
206
|
+
|
data/HISTORY.rdoc
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
= RELEASE HISTORY
|
2
2
|
|
3
|
+
== 0.8.3 / 2011-05-19
|
4
|
+
|
5
|
+
Looks like Lemon is pretty damn near 1.0 status. She probably won't get
|
6
|
+
any major changes for a good while. This release simply adds TAP-Y/J reporters.
|
7
|
+
Just use `-f tapy` or `-f tapj` on the command line.
|
8
|
+
|
9
|
+
Changes:
|
10
|
+
|
11
|
+
* Add TAP-Y/J reporters.
|
12
|
+
* Configuration directory can be `.lemon/`.
|
13
|
+
|
14
|
+
|
3
15
|
== 0.8.2 / 2010-09-05
|
4
16
|
|
5
17
|
This release overhauls how coverage is performed so it does not need to
|
data/NOTICE.rdoc
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
= COPYRIGHT NOTICES
|
2
|
+
|
3
|
+
== Lemon, Copyright (c)2009 Thomas Sawyer
|
4
|
+
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
you may not use this file except in compliance with the License.
|
7
|
+
You may obtain a copy of the License at
|
8
|
+
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
See the License for the specific language governing permissions and
|
15
|
+
limitations under the License.
|
16
|
+
|
data/bin/lemon
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/lemon.rb
CHANGED
@@ -1,2 +1,20 @@
|
|
1
|
-
|
1
|
+
module Lemon
|
2
|
+
|
3
|
+
# Access to metadata.
|
4
|
+
def self.metadata
|
5
|
+
@metadata ||= (
|
6
|
+
require 'yaml'
|
7
|
+
YAML.load(File.new(File.dirname(__FILE__) + '/lemon.yml'))
|
8
|
+
)
|
9
|
+
end
|
10
|
+
|
11
|
+
# Access to project metadata as constants.
|
12
|
+
def self.const_missing(name)
|
13
|
+
key = name.to_s.downcase
|
14
|
+
metadata[key] || super(name)
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
require 'lemon/cli'
|
2
20
|
require 'lemon/controller/coverage_analyzer'
|
data/lib/lemon.yml
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
---
|
2
|
+
spec_version: 1.0.0
|
3
|
+
replaces: []
|
4
|
+
|
5
|
+
loadpath:
|
6
|
+
- lib
|
7
|
+
name: lemon
|
8
|
+
repositories: {}
|
9
|
+
|
10
|
+
conflicts: []
|
11
|
+
|
12
|
+
engine_check: []
|
13
|
+
|
14
|
+
title: Lemon
|
15
|
+
contact: trans <transfire@gmail.com>
|
16
|
+
resources:
|
17
|
+
repository: git://github.com/proutils/lemon.git
|
18
|
+
home: http://proutils.github.com/lemon
|
19
|
+
maintainers: []
|
20
|
+
|
21
|
+
requires:
|
22
|
+
- group: []
|
23
|
+
|
24
|
+
name: ae
|
25
|
+
version: 0+
|
26
|
+
- group:
|
27
|
+
- build
|
28
|
+
name: redline
|
29
|
+
version: 0+
|
30
|
+
- group:
|
31
|
+
- build
|
32
|
+
name: reap
|
33
|
+
version: 0+
|
34
|
+
- group:
|
35
|
+
- test
|
36
|
+
name: qed
|
37
|
+
version: 0+
|
38
|
+
- group:
|
39
|
+
- test
|
40
|
+
name: cucumber
|
41
|
+
version: 0+
|
42
|
+
- group:
|
43
|
+
- test
|
44
|
+
name: aruba
|
45
|
+
version: 0+
|
46
|
+
suite: proutils
|
47
|
+
manifest: MANIFEST
|
48
|
+
version: 0.8.3
|
49
|
+
licenses:
|
50
|
+
- Apache 2.0
|
51
|
+
copyright: Copyright 2009 Thomas Sawyer
|
52
|
+
authors:
|
53
|
+
- Thomas Sawyer
|
54
|
+
description: Lemon is a unit testing framework that tightly correlates class to test case and method to test unit.
|
55
|
+
summary: Pucker-tight Unit Testing
|
data/lib/lemon/cli.rb
CHANGED
@@ -43,9 +43,18 @@ module Lemon
|
|
43
43
|
#files.each{ |s| require s }
|
44
44
|
end
|
45
45
|
|
46
|
+
# Samples
|
47
|
+
#
|
48
|
+
# * .lemon/rc
|
49
|
+
# * .lemon/rc.rb
|
50
|
+
# * .config/lemon/rc
|
51
|
+
# * .config/lemon/rc.rb
|
52
|
+
#
|
53
|
+
RC_GLOB = '{.,.config/,config/}lemon/rc{,.rb}'
|
54
|
+
|
46
55
|
#
|
47
56
|
def initialize_rc
|
48
|
-
if file = Dir[
|
57
|
+
if file = Dir[RC_GLOB].first
|
49
58
|
require file
|
50
59
|
end
|
51
60
|
end
|
@@ -267,13 +276,13 @@ module Lemon
|
|
267
276
|
# Remove reference to lemon library from backtrace.
|
268
277
|
# TODO: Matching `bin/lemon` is not robust.
|
269
278
|
def clean_backtrace(exception)
|
270
|
-
trace = exception.backtrace
|
279
|
+
trace = (Exception === exception ? exception.backtrace : exception)
|
271
280
|
trace = trace.reject{ |t| t =~ /bin\/lemon/ }
|
272
281
|
trace = trace.reject{ |t| t =~ EXCLUDE }
|
273
282
|
if trace.empty?
|
274
283
|
exception
|
275
284
|
else
|
276
|
-
exception.set_backtrace(trace)
|
285
|
+
exception.set_backtrace(trace) if Exception === exception
|
277
286
|
exception
|
278
287
|
end
|
279
288
|
end
|