auto_test 0.0.8.0 → 0.0.8.1

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.
@@ -1,3 +1,3 @@
1
1
  module AutoTest
2
- VERSION = "0.0.8.0"
2
+ VERSION = "0.0.8.1"
3
3
  end
data/lib/dsl.rb CHANGED
@@ -87,5 +87,5 @@ module AutoTest
87
87
  end
88
88
 
89
89
  end
90
- autoload :Test, 'auto_test/lib/auto_test/test'
90
+ autoload :Test, 'test'
91
91
  end
data/lib/error.rb CHANGED
@@ -48,6 +48,6 @@ module AutoTest
48
48
 
49
49
  end
50
50
 
51
- autoload :Test, 'auto_test/lib/auto_test/test'
51
+ autoload :Test, 'test'
52
52
 
53
53
  end
data/lib/page.rb CHANGED
@@ -263,7 +263,7 @@ module AutoTest
263
263
 
264
264
  end
265
265
 
266
- autoload :Test, 'auto_test/lib/auto_test/test'
267
- autoload :User, 'auto_test/lib/auto_test/user'
268
- autoload :Error, 'auto_test/lib/auto_test/error'
266
+ autoload :Test, 'test'
267
+ autoload :User, 'user'
268
+ autoload :Error, 'error'
269
269
  end
data/lib/test.rb CHANGED
@@ -374,7 +374,7 @@ module AutoTest
374
374
  end
375
375
  end
376
376
 
377
- autoload :User, 'auto_test/lib/auto_test/user'
378
- autoload :Error, 'auto_test/lib/auto_test/error'
377
+ autoload :User, 'user'
378
+ autoload :Error, 'error'
379
379
 
380
380
  end
data/lib/user.rb CHANGED
@@ -173,7 +173,7 @@ module AutoTest
173
173
 
174
174
  end
175
175
  end
176
- autoload :Test, 'auto_test/lib/auto_test/test'
177
- autoload :Page, 'auto_test/lib/auto_test/page'
176
+ autoload :Test, 'test'
177
+ autoload :Page, 'page'
178
178
 
179
179
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: auto_test
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.8.0
5
+ version: 0.0.8.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Maike Hargens