moto 0.0.25 → 0.0.26

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: d2eb8efa5d64b6f20b2ce57c06b47105d16a8a0d
4
- data.tar.gz: 6c0024378bf4157fcd64a7b8c256f93eb57aef6c
3
+ metadata.gz: 43b00c030a2cd4d81a9e9de182847575edc7b440
4
+ data.tar.gz: 8bd9ccfc94c286270ee47108be2a11f842d3a1b2
5
5
  SHA512:
6
- metadata.gz: 9ae78b549ab8f886092296e5556b041888c6ea60bbf5516e9666dd3f3eaab4f2fda5fd5a4a0f1e096edd1a73f9e8baef7f5eb2b96b3cacb856355f0064833492
7
- data.tar.gz: 5b1d85e5737de49867d88f4ae5f7b1c45bb8d469558a6cef965a5b949ebfce65771633fea20913915cb6f02033d5392abb0227fa4d9f919790ab8fcc5ca92d89
6
+ metadata.gz: e70f13a1c1fc31d886d4b615ba18dc2644929fbbff6690163414a1cb8a3a63127e931f77edf456b1c45e171e4cb305c4a7040ea3cce57174b70c3708b03b9343
7
+ data.tar.gz: f97b429290305d0bbdb6ca2839df76241e308befde98d1f8c44280a73169db26e488002724d7d5e14689b1ce54be0af4884d2369cc8fb099aa05dc37171bc38f
@@ -103,7 +103,7 @@ module Moto
103
103
  (1..max_attempts).each do |attempt|
104
104
  @test.init(env, params, params_index)
105
105
  # TODO: log path might be specified (to some extent) by the configuration
106
- @test.log_path = "#{@test.dir}/#{@test.name.gsub(/\s+/, '_').gsub('::', '_').gsub('/', '_')}.log"
106
+ @test.log_path = "#{@test.dir}/#{@test.name.gsub(/\s+/, '_').gsub(':', '_').gsub('::', '_').gsub('/', '_')}.log"
107
107
  @logger = Logger.new(File.open(@test.log_path, File::WRONLY | File::TRUNC | File::CREAT))
108
108
  @logger.level = @runner.my_config[:log_level] || Logger::DEBUG
109
109
  @current_test = @test
@@ -1,3 +1,3 @@
1
1
  module Moto
2
- VERSION = '0.0.25'
2
+ VERSION = '0.0.26'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.25
4
+ version: 0.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bartek Wilczek