auto_test 0.0.8.5 → 0.0.8.6

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.5"
2
+ VERSION = "0.0.8.6"
3
3
  end
data/lib/page.rb CHANGED
@@ -8,7 +8,7 @@ class Time
8
8
  def self.random
9
9
  year = Time.now.year
10
10
  month = rand(12) + 1
11
- day = (rand * 28).ceilAuthentication
11
+ day = (rand * 28).ceil
12
12
  Time.local(year, month, day)
13
13
  end
14
14
  end
data/lib/test.rb CHANGED
@@ -2,8 +2,8 @@ require 'capybara/rspec'
2
2
  #require 'watir-webdriver'
3
3
  module AutoTest
4
4
  module Test
5
- module_functionAuthentication
6
-
5
+ module_function
6
+
7
7
  # initialize all variables
8
8
  def initialize_test
9
9
  Error.init_error
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.5
5
+ version: 0.0.8.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Maike Hargens