guard-phpunit 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +37 -0
- data/LICENSE +19 -19
- data/README.md +106 -106
- data/lib/guard/phpunit.rb +112 -112
- data/lib/guard/phpunit/formatter.rb +64 -64
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/PHPUnit/Extensions/Progress/ResultPrinter.php +498 -498
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/README.markdown +44 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/_files/Number.php +78 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/_files/NumberTest.php +99 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/_files/emptyTest.php +6 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_basic.phpt +22 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_errors.phpt +27 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_errors_variation.phpt +28 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_failing.phpt +31 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_failing_variation.phpt +32 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_incomplete.phpt +19 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_incomplete_variation.phpt +20 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_passing.phpt +19 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_passing_variation.phpt +20 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_skipped.phpt +19 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_skipped_variation.phpt +20 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/phpunit.xml +4 -0
- data/lib/guard/phpunit/formatters/PHPUnit-Progress/screenshot.png +0 -0
- data/lib/guard/phpunit/inspector.rb +54 -54
- data/lib/guard/phpunit/notifier.rb +68 -68
- data/lib/guard/phpunit/runner.rb +197 -194
- data/lib/guard/phpunit/templates/Guardfile +3 -3
- data/lib/guard/phpunit/version.rb +6 -6
- metadata +37 -3
@@ -1,3 +1,3 @@
|
|
1
|
-
guard 'phpunit', :cli => '--colors' do
|
2
|
-
watch(%r{^.+Test\.php$})
|
3
|
-
end
|
1
|
+
guard 'phpunit', :cli => '--colors' do
|
2
|
+
watch(%r{^.+Test\.php$})
|
3
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
module Guard
|
2
|
-
# Guard::PHPUnitVersion is used in the gem specification.
|
3
|
-
module PHPUnitVersion
|
4
|
-
VERSION = '0.1.
|
5
|
-
end
|
6
|
-
end
|
1
|
+
module Guard
|
2
|
+
# Guard::PHPUnitVersion is used in the gem specification.
|
3
|
+
module PHPUnitVersion
|
4
|
+
VERSION = '0.1.4'
|
5
|
+
end
|
6
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-phpunit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-08-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: guard
|
@@ -107,6 +107,22 @@ dependencies:
|
|
107
107
|
- - ! '>='
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: pimpmychangelog
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
110
126
|
description: Guard::PHPUnit automatically run your unit-tests written with the PHPUnit
|
111
127
|
testing framework.
|
112
128
|
email:
|
@@ -123,8 +139,26 @@ files:
|
|
123
139
|
- lib/guard/phpunit/templates/Guardfile
|
124
140
|
- lib/guard/phpunit/version.rb
|
125
141
|
- lib/guard/phpunit/formatters/PHPUnit-Progress/PHPUnit/Extensions/Progress/ResultPrinter.php
|
142
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/phpunit.xml
|
143
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/README.markdown
|
144
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/screenshot.png
|
145
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_basic.phpt
|
146
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_errors.phpt
|
147
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_errors_variation.phpt
|
148
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_failing.phpt
|
149
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_failing_variation.phpt
|
150
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_incomplete.phpt
|
151
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_incomplete_variation.phpt
|
152
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_passing.phpt
|
153
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_passing_variation.phpt
|
154
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_skipped.phpt
|
155
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/printer_skipped_variation.phpt
|
156
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/_files/emptyTest.php
|
157
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/_files/Number.php
|
158
|
+
- lib/guard/phpunit/formatters/PHPUnit-Progress/Tests/_files/NumberTest.php
|
126
159
|
- LICENSE
|
127
160
|
- README.md
|
161
|
+
- CHANGELOG.md
|
128
162
|
homepage: ''
|
129
163
|
licenses: []
|
130
164
|
post_install_message:
|
@@ -139,7 +173,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
139
173
|
version: '0'
|
140
174
|
segments:
|
141
175
|
- 0
|
142
|
-
hash:
|
176
|
+
hash: 1047306227
|
143
177
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
144
178
|
none: false
|
145
179
|
requirements:
|