busser-shindo 0.3.1 → 0.3.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d9d293d6eb1fbb56dd37c42263218330c2e1107
4
- data.tar.gz: 8c59ea4260b19d8ebe348108b59330fb16883aba
3
+ metadata.gz: e007b8a4b50b1e0bd2683a8dda1a8f40f3a183bd
4
+ data.tar.gz: d2b895f654d9942d40862499b4e2f00bac39fbfd
5
5
  SHA512:
6
- metadata.gz: 2419dee6991e0201402b114584965b44b681b52da979ba810498be73c9acb1ee8330b85e42f82ba0405f44cff61d5db3dbf86a79ca844f7cdc9f5ddcd8b97490
7
- data.tar.gz: 99b536c29783720adcda794ffcb08e14480b2067e955fb3fba7343d8dfb41e12fa0fbce9efb6e0a91aedaebeb1e3c627035d4f229a3352ecd79f3faba15546b9
6
+ metadata.gz: bed5d51d3f8b633d202f749f9b03fe9ac5aa501d4dc22dd2461797b40fa37570436b66369caf633d2e80f4b8c7a1ba037123e35566fa8fc9602d899ce061b23a
7
+ data.tar.gz: 036d2adf07a76966d62865b473b7857626c42cdaf533fb60b054d7f15e386191d9d7f71f18ab17eb616ccbcf3114a7a3cc95397c6f60ab303097bcd5a7fd943a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.2
2
+
3
+ - should put tests at `tests` directory.
4
+
1
5
  ## 0.3.1
2
6
 
3
7
  - fix path to source code.
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
- └── example_tests.rb
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
- └── example_tests.rb
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 #{suite_path('shindo')}")
47
+ run!("env PATH=#{ENV['PATH']}:#{Gem.bindir} shindont #{tests_path}")
47
48
  end
48
49
  end
@@ -22,6 +22,6 @@ module Busser
22
22
  module Shindo
23
23
 
24
24
  # Version string for the Shindo Busser runner plugin
25
- VERSION = "0.3.1"
25
+ VERSION = "0.3.2"
26
26
  end
27
27
  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.1
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-01-22 00:00:00.000000000 Z
11
+ date: 2014-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: busser