cutest 1.1.2 → 1.1.3
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/cutest.gemspec +13 -2
- data/lib/cutest.rb +1 -1
- data/test/fixtures/exception.rb +7 -0
- data/test/fixtures/fail_custom_assertion.rb +8 -0
- data/test/fixtures/failure.rb +3 -0
- data/test/fixtures/success.rb +7 -0
- metadata +26 -28
data/cutest.gemspec
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
|
+
require "./lib/cutest"
|
|
2
|
+
|
|
1
3
|
Gem::Specification.new do |s|
|
|
2
4
|
s.name = "cutest"
|
|
3
|
-
s.version =
|
|
5
|
+
s.version = Cutest::VERSION
|
|
4
6
|
s.summary = "Forking tests."
|
|
5
7
|
s.description = "Run tests in separate processes to avoid shared state."
|
|
6
8
|
s.authors = ["Damian Janowski", "Michel Martens"]
|
|
7
9
|
s.email = ["djanowski@dimaion.com", "michel@soveran.com"]
|
|
8
10
|
s.homepage = "http://github.com/djanowski/cutest"
|
|
9
|
-
|
|
11
|
+
|
|
12
|
+
s.files = Dir[
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"README.markdown",
|
|
15
|
+
"Rakefile",
|
|
16
|
+
"lib/**/*.rb",
|
|
17
|
+
"*.gemspec",
|
|
18
|
+
"test/**/*.*"
|
|
19
|
+
]
|
|
20
|
+
|
|
10
21
|
s.executables.push "cutest"
|
|
11
22
|
end
|
data/lib/cutest.rb
CHANGED
metadata
CHANGED
|
@@ -1,30 +1,27 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cutest
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.1.3
|
|
4
5
|
prerelease:
|
|
5
|
-
version: 1.1.2
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
7
|
+
authors:
|
|
8
8
|
- Damian Janowski
|
|
9
9
|
- Michel Martens
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
date: 2011-09-20 00:00:00.000000000 +02:00
|
|
14
|
+
default_executable:
|
|
15
15
|
dependencies: []
|
|
16
|
-
|
|
17
16
|
description: Run tests in separate processes to avoid shared state.
|
|
18
|
-
email:
|
|
17
|
+
email:
|
|
19
18
|
- djanowski@dimaion.com
|
|
20
19
|
- michel@soveran.com
|
|
21
|
-
executables:
|
|
20
|
+
executables:
|
|
22
21
|
- cutest
|
|
23
22
|
extensions: []
|
|
24
|
-
|
|
25
23
|
extra_rdoc_files: []
|
|
26
|
-
|
|
27
|
-
files:
|
|
24
|
+
files:
|
|
28
25
|
- LICENSE
|
|
29
26
|
- README.markdown
|
|
30
27
|
- Rakefile
|
|
@@ -33,37 +30,38 @@ files:
|
|
|
33
30
|
- test/assert.rb
|
|
34
31
|
- test/assert_equal.rb
|
|
35
32
|
- test/assert_raise.rb
|
|
33
|
+
- test/fixtures/exception.rb
|
|
34
|
+
- test/fixtures/fail_custom_assertion.rb
|
|
35
|
+
- test/fixtures/failure.rb
|
|
36
|
+
- test/fixtures/success.rb
|
|
36
37
|
- test/prepare.rb
|
|
37
38
|
- test/run.rb
|
|
38
39
|
- test/scopes.rb
|
|
39
40
|
- test/setup.rb
|
|
40
41
|
- bin/cutest
|
|
42
|
+
has_rdoc: true
|
|
41
43
|
homepage: http://github.com/djanowski/cutest
|
|
42
44
|
licenses: []
|
|
43
|
-
|
|
44
45
|
post_install_message:
|
|
45
46
|
rdoc_options: []
|
|
46
|
-
|
|
47
|
-
require_paths:
|
|
47
|
+
require_paths:
|
|
48
48
|
- lib
|
|
49
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
50
|
none: false
|
|
51
|
-
requirements:
|
|
52
|
-
- -
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
55
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ! '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
56
|
none: false
|
|
57
|
-
requirements:
|
|
58
|
-
- -
|
|
59
|
-
- !ruby/object:Gem::Version
|
|
60
|
-
version:
|
|
57
|
+
requirements:
|
|
58
|
+
- - ! '>='
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0'
|
|
61
61
|
requirements: []
|
|
62
|
-
|
|
63
62
|
rubyforge_project:
|
|
64
|
-
rubygems_version: 1.
|
|
63
|
+
rubygems_version: 1.6.2
|
|
65
64
|
signing_key:
|
|
66
65
|
specification_version: 3
|
|
67
66
|
summary: Forking tests.
|
|
68
67
|
test_files: []
|
|
69
|
-
|