cucumber-pride 0.0.1
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/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +50 -0
- data/Rakefile +2 -0
- data/cucumber-pride.gemspec +19 -0
- data/lib/cucumber-pride.rb +87 -0
- data/lib/cucumber-pride/version.rb +5 -0
- metadata +69 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Peter Vandenberk
|
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,50 @@
|
|
1
|
+
# cucumber-pride
|
2
|
+
|
3
|
+
Take pride in your test output!
|
4
|
+
|
5
|
+
Mimics the functionality of `minitest/pride` for Cucumber, in much the same way that `ferrous26/rspec-pride` does for RSpec2.
|
6
|
+
|
7
|
+
## How to use cucumber-pride
|
8
|
+
|
9
|
+
To use cucumber-pride, you need to call `cucumber` kind of like this:
|
10
|
+
|
11
|
+
cucumber --format Cucumber::Pride::Formatter
|
12
|
+
|
13
|
+
Or put those options in your `config/cucumber.yml` file.
|
14
|
+
|
15
|
+
## Installation
|
16
|
+
|
17
|
+
Add this line to your application's Gemfile:
|
18
|
+
|
19
|
+
gem 'cucumber-pride'
|
20
|
+
|
21
|
+
And then execute:
|
22
|
+
|
23
|
+
$ bundle
|
24
|
+
|
25
|
+
Or install it yourself as:
|
26
|
+
|
27
|
+
$ gem install cucumber-pride
|
28
|
+
|
29
|
+
## Usage
|
30
|
+
|
31
|
+
TODO: Write usage instructions here
|
32
|
+
|
33
|
+
## Acknowledgements
|
34
|
+
|
35
|
+
* Main inspiration, and a fair amount of code, comes from the brilliant [`rspec-pride`](https://github.com/ferrous26/rspec-pride/) gem by [Mark Rade (ferrous26)](https://github.com/ferrous26).
|
36
|
+
|
37
|
+
## Contributing
|
38
|
+
|
39
|
+
1. Fork it
|
40
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
41
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
42
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
43
|
+
5. Create new Pull Request
|
44
|
+
|
45
|
+
<a name="copyright"/>
|
46
|
+
|
47
|
+
## Copyright
|
48
|
+
|
49
|
+
Copyright (c) 2012 Peter Vandenberk. See LICENSE.txt for further details.
|
50
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/cucumber-pride/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Peter Vandenberk"]
|
6
|
+
gem.email = ["pvandenberk@mac.com"]
|
7
|
+
gem.description = %q{Mimics the functionality of minitest/pride for Cucumber}
|
8
|
+
gem.summary = %q{Take pride in your testing}
|
9
|
+
gem.homepage = "https://github.com/pvdb/cucumber-pride"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "cucumber-pride"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Cucumber::Pride::VERSION
|
17
|
+
|
18
|
+
gem.add_dependency 'cucumber', ['~> 1.1.1']
|
19
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
require "cucumber-pride/version"
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'cucumber/formatter/progress'
|
5
|
+
|
6
|
+
module Cucumber
|
7
|
+
module Pride
|
8
|
+
class Formatter < Cucumber::Formatter::Progress
|
9
|
+
|
10
|
+
def initialize(step_mother, io, options)
|
11
|
+
super
|
12
|
+
initialize_colors
|
13
|
+
@index = 0
|
14
|
+
@size = @colors.size
|
15
|
+
end
|
16
|
+
|
17
|
+
private
|
18
|
+
|
19
|
+
def progress(status)
|
20
|
+
char = CHARS[status]
|
21
|
+
char = rainbow(char) if char == '.'
|
22
|
+
@io.print(format_string(char, status))
|
23
|
+
@io.flush
|
24
|
+
end
|
25
|
+
|
26
|
+
def dump_count(count, what, state=nil)
|
27
|
+
super.split(//).map { |x| rainbow x }.join
|
28
|
+
end
|
29
|
+
|
30
|
+
#
|
31
|
+
# what follows: shamelessly borrowed from https://github.com/ferrous26/rspec-pride
|
32
|
+
#
|
33
|
+
|
34
|
+
ESC = "\e["
|
35
|
+
NND = "#{ESC}0m"
|
36
|
+
|
37
|
+
if ENV['TERM'] =~ /^xterm(-256color)?$/
|
38
|
+
|
39
|
+
PI_3 = Math::PI / 3
|
40
|
+
|
41
|
+
# Taken, wholesale, from minitest/pride
|
42
|
+
def initialize_colors
|
43
|
+
# walk red, green, and blue around a circle separated by equal thirds.
|
44
|
+
#
|
45
|
+
# To visualize, type this into wolfram-alpha:
|
46
|
+
#
|
47
|
+
# plot (3*sin(x)+3), (3*sin(x+2*pi/3)+3), (3*sin(x+4*pi/3)+3)
|
48
|
+
|
49
|
+
# 6 has wide pretty gradients. 3 == lolcat, about half the width
|
50
|
+
@colors = (0...(6 * 7)).map { |n|
|
51
|
+
n *= 1.0 / 6
|
52
|
+
r = (3 * Math.sin(n ) + 3).to_i
|
53
|
+
g = (3 * Math.sin(n + 2 * PI_3) + 3).to_i
|
54
|
+
b = (3 * Math.sin(n + 4 * PI_3) + 3).to_i
|
55
|
+
|
56
|
+
# Then we take rgb and encode them in a single number using base 6.
|
57
|
+
# For some mysterious reason, we add 16... to clear the bottom 4 bits?
|
58
|
+
# Yes... they're ugly.
|
59
|
+
|
60
|
+
36 * r + 6 * g + b + 16
|
61
|
+
}
|
62
|
+
end
|
63
|
+
|
64
|
+
def rainbow string
|
65
|
+
color = @colors[@index % @size]
|
66
|
+
@index += 1
|
67
|
+
"#{ESC}38;5;#{color}m#{string}#{NND}"
|
68
|
+
end
|
69
|
+
|
70
|
+
else # Old Low-Res Pride
|
71
|
+
|
72
|
+
def initialize_colors
|
73
|
+
@colors = (31..36).to_a
|
74
|
+
end
|
75
|
+
|
76
|
+
def rainbow string
|
77
|
+
# string = '*' if string == '.'
|
78
|
+
color = @colors[@index % @size]
|
79
|
+
@index += 1
|
80
|
+
"#{ESC}#{color}m#{string}#{NND}"
|
81
|
+
end
|
82
|
+
|
83
|
+
end # if ENV['TERM'] =~ /^xterm(-256color)?$/
|
84
|
+
|
85
|
+
end # class Formatter
|
86
|
+
end # module Pride
|
87
|
+
end # module Cucumber
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cucumber-pride
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Peter Vandenberk
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-04-11 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: cucumber
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 1.1.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 1.1.1
|
30
|
+
description: Mimics the functionality of minitest/pride for Cucumber
|
31
|
+
email:
|
32
|
+
- pvandenberk@mac.com
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- Gemfile
|
39
|
+
- LICENSE
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- cucumber-pride.gemspec
|
43
|
+
- lib/cucumber-pride.rb
|
44
|
+
- lib/cucumber-pride/version.rb
|
45
|
+
homepage: https://github.com/pvdb/cucumber-pride
|
46
|
+
licenses: []
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ! '>='
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
requirements: []
|
64
|
+
rubyforge_project:
|
65
|
+
rubygems_version: 1.8.21
|
66
|
+
signing_key:
|
67
|
+
specification_version: 3
|
68
|
+
summary: Take pride in your testing
|
69
|
+
test_files: []
|