watirsplash 2.0.1.rc5 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +14 -11
- data/History.rdoc +5 -0
- data/README.rdoc +13 -7
- data/lib/watirsplash/version.rb +2 -2
- metadata +10 -14
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
watirsplash (2.
|
4
|
+
watirsplash (2.1.0)
|
5
5
|
bundler (~> 1.0)
|
6
6
|
rake (= 0.8.7)
|
7
7
|
require_all
|
@@ -14,12 +14,12 @@ GEM
|
|
14
14
|
builder (3.0.0)
|
15
15
|
childprocess (0.1.9)
|
16
16
|
ffi (~> 1.0.6)
|
17
|
-
commonwatir (1.9.
|
17
|
+
commonwatir (1.9.2)
|
18
18
|
user-choices
|
19
19
|
diff-lcs (1.1.2)
|
20
20
|
ffi (1.0.9-x86-mingw32)
|
21
|
-
firewatir (1.9.
|
22
|
-
commonwatir (= 1.9.
|
21
|
+
firewatir (1.9.2)
|
22
|
+
commonwatir (= 1.9.2)
|
23
23
|
hoe (2.10.0)
|
24
24
|
rake (~> 0.8)
|
25
25
|
json_pure (1.5.3)
|
@@ -27,7 +27,7 @@ GEM
|
|
27
27
|
subexec (~> 0.0.4)
|
28
28
|
nokogiri (1.5.0-x86-mingw32)
|
29
29
|
rake (0.8.7)
|
30
|
-
rautomation (0.
|
30
|
+
rautomation (0.6.2)
|
31
31
|
require_all (1.2.0)
|
32
32
|
rspec (2.6.0)
|
33
33
|
rspec-core (~> 2.6.0)
|
@@ -45,6 +45,8 @@ GEM
|
|
45
45
|
ffi (>= 1.0.7)
|
46
46
|
json_pure
|
47
47
|
rubyzip
|
48
|
+
spork (0.9.0.rc9-x86-mingw32)
|
49
|
+
win32-process
|
48
50
|
subexec (0.0.4)
|
49
51
|
syntax (1.0.0)
|
50
52
|
thor (0.14.6)
|
@@ -52,12 +54,12 @@ GEM
|
|
52
54
|
builder (>= 2.1.2)
|
53
55
|
s4t-utils (>= 1.0.3)
|
54
56
|
xml-simple (>= 1.0.11)
|
55
|
-
watir (1.9.
|
56
|
-
commonwatir (= 1.9.
|
57
|
+
watir (1.9.2)
|
58
|
+
commonwatir (= 1.9.2)
|
57
59
|
ffi (~> 1.0)
|
58
|
-
firewatir (= 1.9.
|
60
|
+
firewatir (= 1.9.2)
|
59
61
|
nokogiri
|
60
|
-
rautomation (~> 0.
|
62
|
+
rautomation (~> 0.6.2)
|
61
63
|
win32-process (>= 0.5.5)
|
62
64
|
windows-pr (>= 0.6.6)
|
63
65
|
watir-webdriver (0.2.5)
|
@@ -80,9 +82,10 @@ PLATFORMS
|
|
80
82
|
x86-mingw32
|
81
83
|
|
82
84
|
DEPENDENCIES
|
83
|
-
firewatir (= 1.9.
|
85
|
+
firewatir (= 1.9.2)
|
84
86
|
rspec (~> 2.6.0)
|
85
|
-
|
87
|
+
spork (~> 0.9.0.rc9)
|
88
|
+
watir (= 1.9.2)
|
86
89
|
watir-webdriver (~> 0.2.5)
|
87
90
|
watirsplash!
|
88
91
|
win32screenshot (~> 1.0.4)
|
data/History.rdoc
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
=== Version 2.1.0 / 2011-07-11
|
2
|
+
|
3
|
+
* integrated with Spork for faster environment loading
|
4
|
+
* all options to RSpec should be provided now via .rspec file
|
5
|
+
|
1
6
|
=== Version 2.0.0 / 2011-07-06
|
2
7
|
|
3
8
|
* added Page Objects support - generate them with `watirsplash page` generator
|
data/README.rdoc
CHANGED
@@ -6,12 +6,12 @@
|
|
6
6
|
== DESCRIPTION
|
7
7
|
|
8
8
|
WatirSplash makes browser-based web page testing in Ruby splashin' easy.
|
9
|
-
It combines Watir, FireWatir or Watir-WebDriver for controlling the browser
|
10
|
-
RSpec for testing framework. This powerful combination gives you
|
9
|
+
It combines Watir, FireWatir or Watir-WebDriver for controlling the browser,
|
10
|
+
RSpec for testing framework and Spork for faster environment loading. This powerful combination gives you
|
11
11
|
the ability to write easily well-maintained and easy-to-read specs (specifications in RSpec) so
|
12
12
|
you don't need to have any extra documentation for your applications.
|
13
13
|
|
14
|
-
WatirSplash makes it easier to use best features of
|
14
|
+
WatirSplash makes it easier to use best features of all of these tools together so
|
15
15
|
you won't have to spend time on thinking how to do that yourself - you can start
|
16
16
|
testing right away!
|
17
17
|
|
@@ -96,9 +96,15 @@ testing right away!
|
|
96
96
|
end
|
97
97
|
end
|
98
98
|
|
99
|
-
|
99
|
+
7) Start Spork for faster environment loading:
|
100
|
+
C:\my_project\ui-test>bundle exec spork
|
101
|
+
...
|
102
|
+
--> DRb magazine_slave_service: 1 provided...
|
103
|
+
--> DRb magazine_slave_service: 2 provided...
|
104
|
+
|
105
|
+
9) Execute all specs
|
100
106
|
C:\my_project\ui-test>bundle exec rspec spec
|
101
|
-
Results will be saved into
|
107
|
+
Results will be saved into to results/index.html
|
102
108
|
|
103
109
|
App::Page::Search @ app/page/search_spec.rb:1 (30.06.2011)
|
104
110
|
has something on the search page:2 (09:34:30)
|
@@ -106,9 +112,9 @@ testing right away!
|
|
106
112
|
Finished in 4.48 seconds
|
107
113
|
1 example, 0 failures
|
108
114
|
|
109
|
-
|
115
|
+
10) Check out the html report at results/index.html
|
110
116
|
|
111
|
-
|
117
|
+
11) Repeat & profit!
|
112
118
|
|
113
119
|
== SUPPORTED PLATFORMS & BROWSERS
|
114
120
|
|
data/lib/watirsplash/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: watirsplash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 11
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
|
-
- 0
|
9
8
|
- 1
|
10
|
-
-
|
11
|
-
|
12
|
-
version: 2.0.1.rc5
|
9
|
+
- 0
|
10
|
+
version: 2.1.0
|
13
11
|
platform: ruby
|
14
12
|
authors:
|
15
13
|
- Jarmo Pertman
|
@@ -17,7 +15,7 @@ autorequire:
|
|
17
15
|
bindir: bin
|
18
16
|
cert_chain: []
|
19
17
|
|
20
|
-
date: 2011-07-
|
18
|
+
date: 2011-07-12 00:00:00 Z
|
21
19
|
dependencies:
|
22
20
|
- !ruby/object:Gem::Dependency
|
23
21
|
name: rake
|
@@ -163,21 +161,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
163
161
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
164
162
|
none: false
|
165
163
|
requirements:
|
166
|
-
- - "
|
164
|
+
- - ">="
|
167
165
|
- !ruby/object:Gem::Version
|
168
|
-
hash:
|
166
|
+
hash: 3
|
169
167
|
segments:
|
170
|
-
-
|
171
|
-
|
172
|
-
- 1
|
173
|
-
version: 1.3.1
|
168
|
+
- 0
|
169
|
+
version: "0"
|
174
170
|
requirements: []
|
175
171
|
|
176
172
|
rubyforge_project:
|
177
173
|
rubygems_version: 1.8.4
|
178
174
|
signing_key:
|
179
175
|
specification_version: 3
|
180
|
-
summary: watirsplash 2.
|
176
|
+
summary: watirsplash 2.1.0
|
181
177
|
test_files:
|
182
178
|
- spec/browser_spec.rb
|
183
179
|
- spec/page_spec.rb
|