matest 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/matest +6 -2
- data/lib/matest/version.rb +1 -1
- data/spec/matest_specs/aliases_spec.rb +1 -3
- data/spec/matest_specs/failing_spec.rb +2 -0
- data/spec/matest_specs/matchers_spec.rb +2 -0
- data/spec/matest_specs/nested_scopes_spec.rb +2 -0
- data/spec/matest_specs/passing_spec.rb +2 -0
- data/spec/matest_specs/printing_assertion_spec.rb +2 -0
- data/spec/matest_specs/scope_spec.rb +2 -0
- data/spec/matest_specs/scoping_stuff_spec.rb +2 -0
- data/spec/matest_specs/slow_spec.rb +2 -0
- data/spec/spec_helper.rb +3 -4
- metadata +1 -3
- data/spec/matest_specs/spec_helper.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5343d40a5235496d63d71af86f7737997f675284
|
4
|
+
data.tar.gz: ac0b79083aa656a8c1fc19ccd65133b9bef3de46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e8628d367ed45aa2784bdaff0b071edbea48e7d883fdb1d09aa4d09e7634dd01e3be2b23fdebe5ca46fc47972e20a87762b9d7ea61c29aaaadc853392e5a8c1
|
7
|
+
data.tar.gz: 68201c248f577c38728c4350db7a6a1c98134f03cc4e9a0fdbddf11ca3f1b0935cc0f258b1ee33e08cfa3c2c75b13243b9c08a8bb84345203a3f1f89751233b6
|
data/bin/matest
CHANGED
@@ -3,7 +3,12 @@
|
|
3
3
|
require "time"
|
4
4
|
start_time = Time.now
|
5
5
|
|
6
|
-
|
6
|
+
if File.exist?(File.expand_path('../../spec', __FILE__))
|
7
|
+
$LOAD_PATH.unshift(File.expand_path('../../spec', __FILE__))
|
8
|
+
end
|
9
|
+
if File.exist?(File.expand_path('../../test', __FILE__))
|
10
|
+
$LOAD_PATH.unshift(File.expand_path('../../test', __FILE__))
|
11
|
+
end
|
7
12
|
|
8
13
|
require "matest"
|
9
14
|
require "rake"
|
@@ -40,4 +45,3 @@ puts "Elapsed: #{time_elapsed} seconds."
|
|
40
45
|
|
41
46
|
|
42
47
|
exit(1) unless info[:success]
|
43
|
-
|
data/lib/matest/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: matest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Federico Iachetti
|
@@ -105,7 +105,6 @@ files:
|
|
105
105
|
- spec/matest_specs/scope_spec.rb
|
106
106
|
- spec/matest_specs/scoping_stuff_spec.rb
|
107
107
|
- spec/matest_specs/slow_spec.rb
|
108
|
-
- spec/matest_specs/spec_helper.rb
|
109
108
|
- spec/spec_helper.rb
|
110
109
|
homepage: ''
|
111
110
|
licenses:
|
@@ -142,5 +141,4 @@ test_files:
|
|
142
141
|
- spec/matest_specs/scope_spec.rb
|
143
142
|
- spec/matest_specs/scoping_stuff_spec.rb
|
144
143
|
- spec/matest_specs/slow_spec.rb
|
145
|
-
- spec/matest_specs/spec_helper.rb
|
146
144
|
- spec/spec_helper.rb
|