honkster-screw-unit-server 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/vendor/js-test-core/lib/js_test_core/client.rb +5 -0
- metadata +4 -4
data/Rakefile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
begin
|
2
2
|
require 'jeweler'
|
3
3
|
Jeweler::Tasks.new do |s|
|
4
|
-
s.name = "
|
4
|
+
s.name = ENV["GEM_PREFIX"] ? "#{ENV["GEM_PREFIX"]}-screw-unit-server" : "screw-unit-server"
|
5
5
|
s.executables = ["screw_unit", "screw_unit_server"]
|
6
6
|
s.summary = "Server and helpers for your Screw Unit tests."
|
7
7
|
s.email = "pivotallabsopensource@googlegroups.com"
|
data/VERSION.yml
CHANGED
@@ -78,6 +78,7 @@ module JsTestCore
|
|
78
78
|
start_selenium_client
|
79
79
|
wait_for_session_to_finish
|
80
80
|
flush_console
|
81
|
+
shutdown_selenium_client
|
81
82
|
suite_passed?
|
82
83
|
end
|
83
84
|
|
@@ -93,6 +94,10 @@ module JsTestCore
|
|
93
94
|
selenium_client.open([uri.path, uri.query].compact.join("?"))
|
94
95
|
end
|
95
96
|
|
97
|
+
def shutdown_selenium_client
|
98
|
+
selenium_client.stop
|
99
|
+
end
|
100
|
+
|
96
101
|
def wait_for_session_to_finish
|
97
102
|
while !suite_finished?
|
98
103
|
poll
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: honkster-screw-unit-server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pivotal Labs
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date:
|
13
|
+
date: 2010-01-12 00:00:00 -08:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -194,8 +194,8 @@ signing_key:
|
|
194
194
|
specification_version: 3
|
195
195
|
summary: Server and helpers for your Screw Unit tests.
|
196
196
|
test_files:
|
197
|
-
- spec/spec_suite.rb
|
198
|
-
- spec/functional_suite.rb
|
199
197
|
- spec/functional/functional_spec.rb
|
200
198
|
- spec/functional/functional_spec_helper.rb
|
201
199
|
- spec/functional/functional_spec_server_starter.rb
|
200
|
+
- spec/functional_suite.rb
|
201
|
+
- spec/spec_suite.rb
|