busser-shindo 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +5 -3
- data/lib/busser/runner_plugin/shindo.rb +2 -1
- data/lib/busser/shindo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e007b8a4b50b1e0bd2683a8dda1a8f40f3a183bd
|
4
|
+
data.tar.gz: d2b895f654d9942d40862499b4e2f00bac39fbfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bed5d51d3f8b633d202f749f9b03fe9ac5aa501d4dc22dd2461797b40fa37570436b66369caf633d2e80f4b8c7a1ba037123e35566fa8fc9602d899ce061b23a
|
7
|
+
data.tar.gz: 036d2adf07a76966d62865b473b7857626c42cdaf533fb60b054d7f15e386191d9d7f71f18ab17eb616ccbcf3114a7a3cc95397c6f60ab303097bcd5a7fd943a
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -9,14 +9,15 @@ The Shindo is simple depth first ruby testing.
|
|
9
9
|
|
10
10
|
## <a name="installation"></a> Installation and Setup
|
11
11
|
|
12
|
-
Put test which written using the Shindo to `test/integration/${suite_name}/shindo`directory.
|
12
|
+
Put test which written using the Shindo to `test/integration/${suite_name}/shindo/tests`directory.
|
13
13
|
|
14
14
|
```
|
15
15
|
test
|
16
16
|
└── integration
|
17
17
|
└── ${suite_name}
|
18
18
|
└── shindo
|
19
|
-
└──
|
19
|
+
└── tests
|
20
|
+
└── example_tests.rb
|
20
21
|
```
|
21
22
|
|
22
23
|
### <a name="bundler_support"></a> Bundler(Gemfile) Support!
|
@@ -32,7 +33,8 @@ test
|
|
32
33
|
└── ${suite_name}
|
33
34
|
└── shindo
|
34
35
|
├── Gemfile ## Here
|
35
|
-
└──
|
36
|
+
└── tests
|
37
|
+
└── example_tests.rb
|
36
38
|
```
|
37
39
|
|
38
40
|
|
@@ -32,6 +32,7 @@ class Busser::RunnerPlugin::Shindo < Busser::RunnerPlugin::Base
|
|
32
32
|
def test
|
33
33
|
## Refered from busser-rspec
|
34
34
|
gemfile_path = File.join(suite_path, 'shindo', 'Gemfile')
|
35
|
+
tests_path = File.join(suite_path, 'shindo', 'tests')
|
35
36
|
if File.exists?(gemfile_path)
|
36
37
|
# Bundle install local completes quickly if the gems are already found locally
|
37
38
|
# it fails if it needs to talk to the internet. The || below is the fallback
|
@@ -43,6 +44,6 @@ class Busser::RunnerPlugin::Shindo < Busser::RunnerPlugin::Base
|
|
43
44
|
end
|
44
45
|
|
45
46
|
banner('run shindont')
|
46
|
-
run!("env PATH=#{ENV['PATH']}:#{Gem.bindir} shindont #{
|
47
|
+
run!("env PATH=#{ENV['PATH']}:#{Gem.bindir} shindont #{tests_path}")
|
47
48
|
end
|
48
49
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: busser-shindo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yukihiko Sawanobori
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: busser
|