test-output-parser 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +6 -0
- data/lib/test_output_parser/framework/rspec.rb +16 -0
- data/lib/test_output_parser/framework.rb +6 -0
- data/lib/test_output_parser/version.rb +3 -0
- data/lib/test_output_parser.rb +8 -0
- data/spec/fixtures/sample-failed-rspec-output.txt +4356 -0
- data/spec/fixtures/sample-junit-output.txt +146 -0
- data/spec/fixtures/sample-rspec-output.txt +194 -0
- data/spec/spec_helper.rb +19 -0
- data/spec/test_count_spec.rb +27 -0
- data/test-output-parser.gemspec +25 -0
- metadata +109 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 6222a3684d174aefdcc15e7de88eb0a3832b92c7
|
4
|
+
data.tar.gz: 8d0f60a16ca89f9bfdacf645c0b65d9dfdf0e7ff
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0b248a19cd47344d987097808c8dda35b058789bebc3255f0fbd3f17ff77097261ff7ecd1b562af3d60c2b3072b7d62ac7d321fbe65b596a3baecfe6d7704496
|
7
|
+
data.tar.gz: 3ee6633edd6307c4c34a895167a3f2d82f68171ee8cc834f0e05430b8085dd02c6e454348bab21551c5bf617dedab2c6d6bc86077ecf724da89b8a9ef006ffc7
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
test-count
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.1.0
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Akshay Karle
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Test::Count
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'test-count'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install test-count
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it ( http://github.com/<my-github-username>/test-count/fork )
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
module TestOutputParser
|
2
|
+
module Framework
|
3
|
+
class RSpec
|
4
|
+
def self.count(test_output)
|
5
|
+
total_specs, failed_specs, pending_specs = 0, 0, 0
|
6
|
+
test_output.scan(/(\d+)\s+example[s]?,\s+(\d+)\s+failure[s]?(,\s*(\d+)\s+pending)?/).each do |arr|
|
7
|
+
total_specs += arr[0].to_i
|
8
|
+
failed_specs += arr[1].to_i
|
9
|
+
pending_specs += arr[3].to_i
|
10
|
+
end
|
11
|
+
|
12
|
+
[total_specs, failed_specs, pending_specs]
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|