rubotium 0.0.1 → 0.0.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 +4 -4
- data/README.md +3 -0
- data/lib/rubotium/device.rb +1 -1
- data/lib/rubotium/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10c1b1c9fe24a60628e1d733d2f7d5918c8f9f99
|
|
4
|
+
data.tar.gz: 2cf29b67d928011a428bc5e8201f0d642ebcd71d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d59688e826e4fc69997b7fe721a97c474d618b5200b94f1a5ccab380fae101e25d9c562b186f8bd6e725ee59ade02830578d708eb4b1c11dd4aabafc8cd920d
|
|
7
|
+
data.tar.gz: c575b257dfc780d3f693e686c76aa1b38e88b4dfef79e8567934abaa083e4440d560d9a2ec8252627447d10121c2accd4b9375204db89f13c13d74de3b60191f
|
data/README.md
CHANGED
|
@@ -10,6 +10,9 @@ This is an Android's Instrumentation test runner. It's in quite early phase but
|
|
|
10
10
|
|
|
11
11
|
gem install rubotium
|
|
12
12
|
|
|
13
|
+
## Requirements:
|
|
14
|
+
Installed android SDK with `aapt` in your PATH
|
|
15
|
+
Installed `java` with `javap` in your PATH
|
|
13
16
|
## Usage
|
|
14
17
|
|
|
15
18
|
$ rubotium -t <path_to_tests.apk> -a <path_to_application.apk> -r <instrumentation_test_runner>
|
data/lib/rubotium/device.rb
CHANGED
|
@@ -30,7 +30,7 @@ module Rubotium
|
|
|
30
30
|
raise(NoTestSuiteError, "Please setup test suite before running tests") if testsuite.nil?
|
|
31
31
|
puts "Running tests"
|
|
32
32
|
testsuite.each{|runable_test|
|
|
33
|
-
@results[runable_test.package_name] = []
|
|
33
|
+
@results[runable_test.package_name] = [] if(@results[runable_test.package_name].nil?)
|
|
34
34
|
puts runable_test.name
|
|
35
35
|
run_count = 0
|
|
36
36
|
puts "TEST: #{runable_test.name}"
|
data/lib/rubotium/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubotium
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Slawomir Smiechura
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-08-
|
|
11
|
+
date: 2014-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|