infinity_test 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +10 -0
- data/.infinity_test +8 -0
- data/.rspec +1 -0
- data/.rvmrc +1 -0
- data/Gemfile +11 -0
- data/Rakefile +49 -0
- data/Readme.markdown +92 -0
- data/Tasks +5 -0
- data/VERSION.yml +5 -0
- data/bin/infinity_test +7 -0
- data/buzz_images/buzz_lightyear.jpg +0 -0
- data/buzz_images/buzz_lightyear_continencia.gif +0 -0
- data/buzz_images/to_infinity_and_beyond.png +0 -0
- data/features/infinity_test.feature +36 -0
- data/features/support/env.rb +1 -0
- data/images/faces/failure.png +0 -0
- data/images/faces/pending.png +0 -0
- data/images/faces/sucess.png +0 -0
- data/images/hands/failure.png +0 -0
- data/images/hands/pending.png +0 -0
- data/images/hands/sucess.png +0 -0
- data/images/mario_bros/failure.jpg +0 -0
- data/images/mario_bros/pending.jpg +0 -0
- data/images/mario_bros/sucess.jpg +0 -0
- data/images/rails/failure.png +0 -0
- data/images/rails/pending.png +0 -0
- data/images/rails/sucess.png +0 -0
- data/images/rubies/failure.png +0 -0
- data/images/rubies/pending.png +0 -0
- data/images/rubies/sucess.png +0 -0
- data/images/simpson/failure.gif +0 -0
- data/images/simpson/pending.jpg +0 -0
- data/images/simpson/sucess.jpg +0 -0
- data/images/street_fighter/failure.gif +0 -0
- data/images/street_fighter/pending.gif +0 -0
- data/images/street_fighter/sucess.jpg +0 -0
- data/images/toy_story/failure.gif +0 -0
- data/images/toy_story/pending.png +0 -0
- data/images/toy_story/sucess.png +0 -0
- data/infinity_test.gemspec +168 -0
- data/lib/infinity_test.rb +31 -0
- data/lib/infinity_test/application.rb +168 -0
- data/lib/infinity_test/binary_path.rb +21 -0
- data/lib/infinity_test/command.rb +57 -0
- data/lib/infinity_test/configuration.rb +157 -0
- data/lib/infinity_test/continuous_testing.rb +62 -0
- data/lib/infinity_test/dependencies.rb +45 -0
- data/lib/infinity_test/notifications/growl.rb +15 -0
- data/lib/infinity_test/notifications/lib_notify.rb +11 -0
- data/lib/infinity_test/options.rb +52 -0
- data/lib/infinity_test/rspec.rb +87 -0
- data/lib/infinity_test/runner.rb +30 -0
- data/lib/infinity_test/test_unit.rb +74 -0
- data/lib/infinity_test/test_unit_loader.rb +5 -0
- data/spec/factories/buzz/lib/buzz.rb +0 -0
- data/spec/factories/buzz/spec/buzz_spec.rb +0 -0
- data/spec/factories/company/lib/company.rb +0 -0
- data/spec/factories/company/test/company_test.rb +0 -0
- data/spec/factories/images/failure.png +0 -0
- data/spec/factories/images/pending.png +0 -0
- data/spec/factories/images/sucess.png +0 -0
- data/spec/factories/infinity_test +5 -0
- data/spec/factories/infinity_test_example +7 -0
- data/spec/factories/slinky/spec/slinky/slinky_spec.rb +0 -0
- data/spec/factories/travel/lib/travel.rb +0 -0
- data/spec/factories/travel/test/partner_test.rb +0 -0
- data/spec/factories/travel/test/travel_test.rb +0 -0
- data/spec/factories/wood/lib/wood.rb +0 -0
- data/spec/factories/wood/spec/wood_spec.rb +0 -0
- data/spec/infinity_test/application_spec.rb +149 -0
- data/spec/infinity_test/command_spec.rb +47 -0
- data/spec/infinity_test/configuration_spec.rb +196 -0
- data/spec/infinity_test/continuous_testing_spec.rb +7 -0
- data/spec/infinity_test/notifications/growl_spec.rb +9 -0
- data/spec/infinity_test/notifications/lib_notify_spec.rb +9 -0
- data/spec/infinity_test/options_spec.rb +69 -0
- data/spec/infinity_test/rspec_spec.rb +189 -0
- data/spec/infinity_test/runner_spec.rb +34 -0
- data/spec/infinity_test/test_unit_spec.rb +182 -0
- data/spec/infinity_test_spec.rb +29 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +67 -0
- metadata +226 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module InfinityTest
|
4
|
+
describe Runner do
|
5
|
+
|
6
|
+
let(:runner_class) { InfinityTest::Runner }
|
7
|
+
|
8
|
+
context "on default values" do
|
9
|
+
|
10
|
+
it "commands should have a empty Array" do
|
11
|
+
runner_class.new({:test_framework => :rspec}).commands.should eql []
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should set the application object" do
|
15
|
+
runner_class.new({:test_framework => :test_unit}).application.should be_instance_of(Application)
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "#start_continuous_testing!" do
|
21
|
+
let(:empty_runner) { InfinityTest::Runner.new({}) }
|
22
|
+
let(:mock_continuous_testing) { @mock ||= mock(ContinuousTesting) }
|
23
|
+
|
24
|
+
it "should call start for Continuous Testing" do
|
25
|
+
application = application_with_rspec
|
26
|
+
ContinuousTesting.should_receive(:new).and_return(mock_continuous_testing)
|
27
|
+
mock_continuous_testing.should_receive(:start!)
|
28
|
+
empty_runner.start_continuous_testing!
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,182 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module InfinityTest
|
4
|
+
describe TestUnit do
|
5
|
+
|
6
|
+
before(:each) do
|
7
|
+
@current_dir = Dir.pwd
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should be possible to set all rubies" do
|
11
|
+
TestUnit.new(:rubies => 'jruby').rubies.should be == 'jruby'
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should be possible to set any rubies that I want" do
|
15
|
+
TestUnit.new(:rubies => 'ree,1.9.1,1.9.2').rubies.should be == 'ree,1.9.1,1.9.2'
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should have the test directory pattern" do
|
19
|
+
TestUnit.new(:rubies => 'ree,1.9.1').test_directory_pattern.should be == "^test/*/(.*)_test.rb"
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should be empty when not have rubies" do
|
23
|
+
TestUnit.new.rubies.should be == []
|
24
|
+
end
|
25
|
+
|
26
|
+
describe "#test_loader" do
|
27
|
+
let(:test_unit) { TestUnit.new }
|
28
|
+
it "should call files to test with test_loader" do
|
29
|
+
Dir.chdir("#{@current_dir}/spec/factories/travel") do
|
30
|
+
test_unit.test_loader.should eql "#{@current_dir}/lib/infinity_test/test_unit_loader.rb"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
context "should call more than one file to test with test_loader" do
|
35
|
+
|
36
|
+
it "return should include test/company_test.rb" do
|
37
|
+
Dir.chdir("#{@current_dir}/spec/factories/company") do
|
38
|
+
test_unit.collect_test_files.should eql ["test/company_test.rb"]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
it "return should include more than one file to test" do
|
43
|
+
Dir.chdir("#{@current_dir}/spec/factories/travel") do
|
44
|
+
test_unit.collect_test_files.should eql ["test/partner_test.rb","test/travel_test.rb"]
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe '#construct_commands' do
|
52
|
+
|
53
|
+
it "should return a Hash when not have rubies" do
|
54
|
+
TestUnit.new.construct_commands.should be_instance_of(Hash)
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
describe '#parse_results' do
|
60
|
+
|
61
|
+
before do
|
62
|
+
@test_unit = TestUnit.new
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should parse when have all passed" do
|
66
|
+
results = ".....\n3 tests, 3 assertions, 0 failures, 0 errors, 0 skips"
|
67
|
+
@test_unit.parse_results(results)
|
68
|
+
@test_unit.message.should == "3 tests, 3 assertions, 0 failures, 0 errors, 0 skips"
|
69
|
+
end
|
70
|
+
|
71
|
+
it "should parse when have extra message (in Ruby 1.9.*)" do
|
72
|
+
results = "\nFinished in 0.001742 seconds.\n\n3 tests, 3 assertions, 1 failures, 1 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
73
|
+
@test_unit.parse_results(results)
|
74
|
+
@test_unit.message.should == "3 tests, 3 assertions, 1 failures, 1 errors, 1 skips"
|
75
|
+
end
|
76
|
+
|
77
|
+
it "should parse when have a exception" do
|
78
|
+
@test_unit.parse_results("")
|
79
|
+
@test_unit.message.should == "An exception ocurred"
|
80
|
+
end
|
81
|
+
|
82
|
+
it "should parse and set correctly the tests" do
|
83
|
+
results = "\nFinished in 0.8981 seconds.\n\n3 tests, 3 assertions, 1 failures, 1 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
84
|
+
@test_unit.parse_results(results)
|
85
|
+
@test_unit.tests.should == 3
|
86
|
+
end
|
87
|
+
|
88
|
+
it "should parse and set correctly the tests" do
|
89
|
+
results = "\nFinished in 0.5678 seconds.\n\n6 tests, 3 assertions, 1 failures, 1 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
90
|
+
@test_unit.parse_results(results)
|
91
|
+
@test_unit.tests.should == 6
|
92
|
+
end
|
93
|
+
|
94
|
+
it "should parse and set correctly the tests" do
|
95
|
+
results = "\nFinished in 0.34678 seconds.\n\n6 tests, 7 assertions, 1 failures, 1 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
96
|
+
@test_unit.parse_results(results)
|
97
|
+
@test_unit.assertions.should == 7
|
98
|
+
end
|
99
|
+
|
100
|
+
it "should parse and set correctly the tests" do
|
101
|
+
results = "\nFinished in 0.8561 seconds.\n\n3 tests, 4 assertions, 1 failures, 1 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
102
|
+
@test_unit.parse_results(results)
|
103
|
+
@test_unit.assertions.should == 4
|
104
|
+
end
|
105
|
+
|
106
|
+
it "should parse and set correctly the tests" do
|
107
|
+
results = "\nFinished in 0.7654 seconds.\n\n6 tests, 3 assertions, 4 failures, 1 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
108
|
+
@test_unit.parse_results(results)
|
109
|
+
@test_unit.failures.should == 4
|
110
|
+
end
|
111
|
+
|
112
|
+
it "should parse and set correctly the tests" do
|
113
|
+
results = "\nFinished in 0.789065 seconds.\n\n6 tests, 3 assertions, 5 failures, 1 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
114
|
+
@test_unit.parse_results(results)
|
115
|
+
@test_unit.failures.should == 5
|
116
|
+
end
|
117
|
+
|
118
|
+
it "should parse and set correctly the tests" do
|
119
|
+
results = "\nFinished in 0.7654 seconds.\n\n6 tests, 3 assertions, 4 failures, 2 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
120
|
+
@test_unit.parse_results(results)
|
121
|
+
@test_unit.errors.should == 2
|
122
|
+
end
|
123
|
+
|
124
|
+
it "should parse and set correctly the tests" do
|
125
|
+
results = "\nFinished in 0.7654 seconds.\n\n36 tests, 37 assertions, 4 failures, 20 errors, 1 skips\n\nTest run options: --seed 18841\n"
|
126
|
+
@test_unit.parse_results(results)
|
127
|
+
@test_unit.errors.should == 20
|
128
|
+
end
|
129
|
+
|
130
|
+
it "should parse when have a exception and set failure to 1" do
|
131
|
+
@test_unit.parse_results("")
|
132
|
+
@test_unit.failures.should == 1
|
133
|
+
@test_unit.tests.should == 0
|
134
|
+
@test_unit.assertions.should == 0
|
135
|
+
@test_unit.errors.should == 1
|
136
|
+
end
|
137
|
+
|
138
|
+
end
|
139
|
+
|
140
|
+
describe '#failure?' do
|
141
|
+
|
142
|
+
before do
|
143
|
+
@test_unit = TestUnit.new
|
144
|
+
end
|
145
|
+
|
146
|
+
it "should return true when have failures" do
|
147
|
+
@test_unit.parse_results(".....\n3 tests, 3 assertions, 1 failures, 0 errors, 0 skips")
|
148
|
+
@test_unit.failure?.should be_true
|
149
|
+
end
|
150
|
+
|
151
|
+
it "should return true when have errors" do
|
152
|
+
@test_unit.parse_results(".....\n3 tests, 3 assertions, 0 failures, 4 errors, 0 skips")
|
153
|
+
@test_unit.failure?.should be_true
|
154
|
+
end
|
155
|
+
|
156
|
+
it "should return true when have nothing" do
|
157
|
+
@test_unit.parse_results("")
|
158
|
+
@test_unit.failure?.should be_true
|
159
|
+
end
|
160
|
+
|
161
|
+
it "should return false when have all suceed :) " do
|
162
|
+
@test_unit.parse_results(".....\n3 tests, 3 assertions, 0 failures, 0 errors, 0 skips")
|
163
|
+
@test_unit.failure?.should be_false
|
164
|
+
end
|
165
|
+
|
166
|
+
it 'should return false when have all assertions and tests suceed \o/ ' do
|
167
|
+
@test_unit.parse_results(".....\n4 tests, 7 assertions, 0 failures, 0 errors, 0 skips")
|
168
|
+
@test_unit.failure?.should be_false
|
169
|
+
end
|
170
|
+
|
171
|
+
end
|
172
|
+
|
173
|
+
describe '#pending?' do
|
174
|
+
|
175
|
+
it "should be false" do
|
176
|
+
TestUnit.new.pending?.should equal false
|
177
|
+
end
|
178
|
+
|
179
|
+
end
|
180
|
+
|
181
|
+
end
|
182
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe InfinityTest do
|
4
|
+
|
5
|
+
describe '#application' do
|
6
|
+
|
7
|
+
it "should be a instace of Application" do
|
8
|
+
InfinityTest.application.should be_instance_of(InfinityTest::Application)
|
9
|
+
end
|
10
|
+
|
11
|
+
it "should cache instance variable in the same object" do
|
12
|
+
application = InfinityTest.application
|
13
|
+
InfinityTest.application.should equal application
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '#configuration' do
|
19
|
+
|
20
|
+
it { InfinityTest.configuration.should be_instance_of(InfinityTest::Configuration) }
|
21
|
+
|
22
|
+
it "should cache the instance of configuration class" do
|
23
|
+
configuration = InfinityTest.configuration
|
24
|
+
configuration.should equal InfinityTest.configuration
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
data/spec/spec.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color --diff
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
require 'infinity_test'
|
4
|
+
|
5
|
+
begin
|
6
|
+
require 'spec'
|
7
|
+
rescue LoadError
|
8
|
+
require 'rspec'
|
9
|
+
end
|
10
|
+
|
11
|
+
require 'watchr'
|
12
|
+
|
13
|
+
def stub_home_config(options)
|
14
|
+
File.should_receive(:expand_path).with('~/.infinity_test').and_return(options[:file])
|
15
|
+
end
|
16
|
+
|
17
|
+
def read_and_load_home_config(options)
|
18
|
+
stub_home_config :file => options[:file]
|
19
|
+
@application.load_configuration_file
|
20
|
+
end
|
21
|
+
|
22
|
+
def application_with(options)
|
23
|
+
application = InfinityTest::Application.new
|
24
|
+
application.config.use(options)
|
25
|
+
application
|
26
|
+
end
|
27
|
+
|
28
|
+
def application_with_rspec
|
29
|
+
application = InfinityTest::Application.new
|
30
|
+
application.config.use(:test_framework => :rspec)
|
31
|
+
application
|
32
|
+
end
|
33
|
+
|
34
|
+
def application_with_test_unit
|
35
|
+
application = InfinityTest::Application.new
|
36
|
+
application.config.use(:test_framework => :test_unit)
|
37
|
+
application
|
38
|
+
end
|
39
|
+
|
40
|
+
def application_with_growl
|
41
|
+
application = InfinityTest::Application.new
|
42
|
+
application.config.notifications :growl
|
43
|
+
application
|
44
|
+
end
|
45
|
+
|
46
|
+
def new_application(options)
|
47
|
+
application = InfinityTest::Application.new
|
48
|
+
application.config.notifications options[:notifications] if options[:notifications]
|
49
|
+
application.config.use(options) if options
|
50
|
+
application
|
51
|
+
end
|
52
|
+
|
53
|
+
def continuous_testing_with(application)
|
54
|
+
InfinityTest::ContinuousTesting.new(:application => application)
|
55
|
+
end
|
56
|
+
|
57
|
+
def image(basename)
|
58
|
+
File.expand_path(File.join(File.dirname(__FILE__), '..', 'images', basename))
|
59
|
+
end
|
60
|
+
|
61
|
+
def custom_image(basename)
|
62
|
+
File.expand_path(File.join(File.dirname(__FILE__), 'factories', basename))
|
63
|
+
end
|
64
|
+
|
65
|
+
def custom_image_dir
|
66
|
+
File.expand_path(File.join(File.dirname(__FILE__), 'factories', 'images'))
|
67
|
+
end
|
metadata
ADDED
@@ -0,0 +1,226 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: infinity_test
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 0.1.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Tomas D'Stefano
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-09-18 00:00:00 -03:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: watchr
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
- 7
|
31
|
+
version: "0.7"
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: rspec
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
segments:
|
43
|
+
- 1
|
44
|
+
- 3
|
45
|
+
- 0
|
46
|
+
version: 1.3.0
|
47
|
+
type: :development
|
48
|
+
version_requirements: *id002
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: cucumber
|
51
|
+
prerelease: false
|
52
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
segments:
|
58
|
+
- 0
|
59
|
+
- 6
|
60
|
+
- 2
|
61
|
+
version: 0.6.2
|
62
|
+
type: :development
|
63
|
+
version_requirements: *id003
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: aruba
|
66
|
+
prerelease: false
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
- 1
|
75
|
+
- 7
|
76
|
+
version: 0.1.7
|
77
|
+
type: :development
|
78
|
+
version_requirements: *id004
|
79
|
+
description: Infinity Test is a continuous testing library and a flexible alternative to Autotest, using Watchr library with Rspec OR Test::Unit with RVM funcionality, giving the possibility to test with all Rubies that you have in your RVM configuration.
|
80
|
+
email: tomasdestefi@gmail.com
|
81
|
+
executables:
|
82
|
+
- infinity_test
|
83
|
+
- infinity_test.compiled.rbc
|
84
|
+
extensions: []
|
85
|
+
|
86
|
+
extra_rdoc_files: []
|
87
|
+
|
88
|
+
files:
|
89
|
+
- .gitignore
|
90
|
+
- .infinity_test
|
91
|
+
- .rspec
|
92
|
+
- .rvmrc
|
93
|
+
- Gemfile
|
94
|
+
- Rakefile
|
95
|
+
- Readme.markdown
|
96
|
+
- Tasks
|
97
|
+
- VERSION.yml
|
98
|
+
- bin/infinity_test
|
99
|
+
- buzz_images/buzz_lightyear.jpg
|
100
|
+
- buzz_images/buzz_lightyear_continencia.gif
|
101
|
+
- buzz_images/to_infinity_and_beyond.png
|
102
|
+
- features/infinity_test.feature
|
103
|
+
- features/support/env.rb
|
104
|
+
- images/faces/failure.png
|
105
|
+
- images/faces/pending.png
|
106
|
+
- images/faces/sucess.png
|
107
|
+
- images/hands/failure.png
|
108
|
+
- images/hands/pending.png
|
109
|
+
- images/hands/sucess.png
|
110
|
+
- images/mario_bros/failure.jpg
|
111
|
+
- images/mario_bros/pending.jpg
|
112
|
+
- images/mario_bros/sucess.jpg
|
113
|
+
- images/rails/failure.png
|
114
|
+
- images/rails/pending.png
|
115
|
+
- images/rails/sucess.png
|
116
|
+
- images/rubies/failure.png
|
117
|
+
- images/rubies/pending.png
|
118
|
+
- images/rubies/sucess.png
|
119
|
+
- images/simpson/failure.gif
|
120
|
+
- images/simpson/pending.jpg
|
121
|
+
- images/simpson/sucess.jpg
|
122
|
+
- images/street_fighter/failure.gif
|
123
|
+
- images/street_fighter/pending.gif
|
124
|
+
- images/street_fighter/sucess.jpg
|
125
|
+
- images/toy_story/failure.gif
|
126
|
+
- images/toy_story/pending.png
|
127
|
+
- images/toy_story/sucess.png
|
128
|
+
- infinity_test.gemspec
|
129
|
+
- lib/infinity_test.rb
|
130
|
+
- lib/infinity_test/application.rb
|
131
|
+
- lib/infinity_test/binary_path.rb
|
132
|
+
- lib/infinity_test/command.rb
|
133
|
+
- lib/infinity_test/configuration.rb
|
134
|
+
- lib/infinity_test/continuous_testing.rb
|
135
|
+
- lib/infinity_test/dependencies.rb
|
136
|
+
- lib/infinity_test/notifications/growl.rb
|
137
|
+
- lib/infinity_test/notifications/lib_notify.rb
|
138
|
+
- lib/infinity_test/options.rb
|
139
|
+
- lib/infinity_test/rspec.rb
|
140
|
+
- lib/infinity_test/runner.rb
|
141
|
+
- lib/infinity_test/test_unit.rb
|
142
|
+
- lib/infinity_test/test_unit_loader.rb
|
143
|
+
- spec/factories/buzz/lib/buzz.rb
|
144
|
+
- spec/factories/buzz/spec/buzz_spec.rb
|
145
|
+
- spec/factories/company/lib/company.rb
|
146
|
+
- spec/factories/company/test/company_test.rb
|
147
|
+
- spec/factories/images/failure.png
|
148
|
+
- spec/factories/images/pending.png
|
149
|
+
- spec/factories/images/sucess.png
|
150
|
+
- spec/factories/infinity_test
|
151
|
+
- spec/factories/infinity_test_example
|
152
|
+
- spec/factories/slinky/spec/slinky/slinky_spec.rb
|
153
|
+
- spec/factories/travel/lib/travel.rb
|
154
|
+
- spec/factories/travel/test/partner_test.rb
|
155
|
+
- spec/factories/travel/test/travel_test.rb
|
156
|
+
- spec/factories/wood/lib/wood.rb
|
157
|
+
- spec/factories/wood/spec/wood_spec.rb
|
158
|
+
- spec/infinity_test/application_spec.rb
|
159
|
+
- spec/infinity_test/command_spec.rb
|
160
|
+
- spec/infinity_test/configuration_spec.rb
|
161
|
+
- spec/infinity_test/continuous_testing_spec.rb
|
162
|
+
- spec/infinity_test/notifications/growl_spec.rb
|
163
|
+
- spec/infinity_test/notifications/lib_notify_spec.rb
|
164
|
+
- spec/infinity_test/options_spec.rb
|
165
|
+
- spec/infinity_test/rspec_spec.rb
|
166
|
+
- spec/infinity_test/runner_spec.rb
|
167
|
+
- spec/infinity_test/test_unit_spec.rb
|
168
|
+
- spec/infinity_test_spec.rb
|
169
|
+
- spec/spec.opts
|
170
|
+
- spec/spec_helper.rb
|
171
|
+
- bin/infinity_test.compiled.rbc
|
172
|
+
has_rdoc: true
|
173
|
+
homepage: http://github.com/tomas-stefano/infinity_test
|
174
|
+
licenses: []
|
175
|
+
|
176
|
+
post_install_message: "\n --------------------------------------------------------------------------------\n T O I N F I N I T Y A N D B E Y O N D !!!\n\n The Infinity uses the awesome RVM to run. \n If you don't have the RVM installed, stop what you doing =p.\n RVM Installation Instructions:\n http://rvm.beginrescueend.com/rvm/install/ \n And don't forget to see how you can customize Infinity Test here: \n http://github.com/tomas-stefano/infinity_test/wiki/Customize-Infinity-Test\n\n Happy Coding! :)\n\n --------------------------------------------------------------------------------\n \n"
|
177
|
+
rdoc_options:
|
178
|
+
- --charset=UTF-8
|
179
|
+
require_paths:
|
180
|
+
- lib
|
181
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
182
|
+
none: false
|
183
|
+
requirements:
|
184
|
+
- - ">="
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
segments:
|
187
|
+
- 0
|
188
|
+
version: "0"
|
189
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
190
|
+
none: false
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
segments:
|
195
|
+
- 0
|
196
|
+
version: "0"
|
197
|
+
requirements: []
|
198
|
+
|
199
|
+
rubyforge_project:
|
200
|
+
rubygems_version: 1.3.7
|
201
|
+
signing_key:
|
202
|
+
specification_version: 3
|
203
|
+
summary: Continuous testing and a flexible alternative to Autotest using watchr and RVM
|
204
|
+
test_files:
|
205
|
+
- spec/factories/buzz/lib/buzz.rb
|
206
|
+
- spec/factories/buzz/spec/buzz_spec.rb
|
207
|
+
- spec/factories/company/lib/company.rb
|
208
|
+
- spec/factories/company/test/company_test.rb
|
209
|
+
- spec/factories/slinky/spec/slinky/slinky_spec.rb
|
210
|
+
- spec/factories/travel/lib/travel.rb
|
211
|
+
- spec/factories/travel/test/partner_test.rb
|
212
|
+
- spec/factories/travel/test/travel_test.rb
|
213
|
+
- spec/factories/wood/lib/wood.rb
|
214
|
+
- spec/factories/wood/spec/wood_spec.rb
|
215
|
+
- spec/infinity_test/application_spec.rb
|
216
|
+
- spec/infinity_test/command_spec.rb
|
217
|
+
- spec/infinity_test/configuration_spec.rb
|
218
|
+
- spec/infinity_test/continuous_testing_spec.rb
|
219
|
+
- spec/infinity_test/notifications/growl_spec.rb
|
220
|
+
- spec/infinity_test/notifications/lib_notify_spec.rb
|
221
|
+
- spec/infinity_test/options_spec.rb
|
222
|
+
- spec/infinity_test/rspec_spec.rb
|
223
|
+
- spec/infinity_test/runner_spec.rb
|
224
|
+
- spec/infinity_test/test_unit_spec.rb
|
225
|
+
- spec/infinity_test_spec.rb
|
226
|
+
- spec/spec_helper.rb
|