testgen 0.8 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog CHANGED
@@ -1,3 +1,6 @@
1
+ === Version 0.8.1 / 2013-4-26
2
+ * Updated --with-gametel option to match updated gametel gem release
3
+
1
4
  === Verstion 0.8 / 2013-4-8
2
5
  * Simplified Gametel generated files to utilize Gametel updates
3
6
 
@@ -25,9 +25,10 @@ Feature: Adding the --with-gametel flag
25
25
  Scenario: Creating the Driver and hooks
26
26
  When I run `testgen project sample --with-gametel`
27
27
  Then a file named "sample/features/support/env.rb" should exist
28
- And the file "sample/features/support/env.rb" should contain "@driver = Gametel.start(ACTIVITY_NAME_GOES_HERE, keystore)"
28
+ And the file "sample/features/support/env.rb" should contain "@driver = Gametel.start(ACTIVITY_NAME_GOES_HERE)"
29
29
  And the file "sample/features/support/env.rb" should contain "Gametel.stop"
30
30
  And the file "sample/features/support/env.rb" should contain "Gametel.apk_path = PATH_TO_APK"
31
+ And the file "sample/features/support/env.rb" should contain "Gametel.keystore = keystore"
31
32
 
32
33
 
33
34
  Scenario: Should not create the hooks file
@@ -33,9 +33,10 @@ keystore = {
33
33
  }
34
34
 
35
35
  Gametel.apk_path = PATH_TO_APK
36
+ Gametel.keystore = keystore
36
37
 
37
38
  Before do
38
- @driver = Gametel.start(ACTIVITY_NAME_GOES_HERE, keystore)
39
+ @driver = Gametel.start(ACTIVITY_NAME_GOES_HERE)
39
40
  end
40
41
 
41
42
  After do
@@ -1,3 +1,3 @@
1
1
  module TestGen
2
- VERSION = "0.8"
2
+ VERSION = "0.8.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testgen
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.8'
4
+ version: 0.8.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-08 00:00:00.000000000 Z
12
+ date: 2013-04-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor