jtzemp-tourbus 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/README.rdoc +9 -3
  2. metadata +13 -2
data/README.rdoc CHANGED
@@ -20,6 +20,10 @@ testing tool. The difference is that TourBus also scales concurrently,
20
20
  and you can perform hundreds of complicated regression tests
21
21
  simultaneously in order to thoroughly load test your website.
22
22
 
23
+ It uses Webrat::Mechanize to run the browsing session, so you get the
24
+ load testing you want, and all the sweetness of Webrat to write your
25
+ tests in.
26
+
23
27
  == Motivation
24
28
 
25
29
  I started writing TourBus because I needed flexibility and scalability
@@ -79,7 +83,7 @@ of the methods in Simple three times.
79
83
 
80
84
  * You can specify multiple tours.
81
85
 
82
- tourbus -c 2 -n 3 simple1 simple2 simple3
86
+ tourbus -c 2 -n 3 simple1 simple2 simple3
83
87
 
84
88
  * If you don't specify a tour, all tours in ./tours will be run.
85
89
 
@@ -87,7 +91,7 @@ of the methods in Simple three times.
87
91
 
88
92
  * You can run tours and filter given tests.
89
93
 
90
- tourbus -c 2 -n 3 simple -t test_login,test_logout
94
+ tourbus -c 2 -n 3 simple -t test_login,test_logout
91
95
 
92
96
  Note that if you specify multiple tours and filter tests, the filtered
93
97
  tests will be run on all tours specified. If you do not specify a
@@ -178,7 +182,9 @@ duplications, oversights, and kludges.
178
182
  * I'd like to remove WebSickle and replace it with Webrat. There is a
179
183
  webrat branch on the main fork (http://github.com/dbrady/tourbus)
180
184
  that is 90% complete. Once that's done we can start massaging the
181
- API to be a little more friendly.
185
+ API to be a little more friendly. [done (but now that it is, it
186
+ needs a refactoring--Tour should probably inherit from
187
+ Webrat::Mechanize, not delegate to it.)]
182
188
 
183
189
  == Credits
184
190
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jtzemp-tourbus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Brady
@@ -53,6 +53,16 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: "0"
55
55
  version:
56
+ - !ruby/object:Gem::Dependency
57
+ name: webrat
58
+ type: :runtime
59
+ version_requirement:
60
+ version_requirements: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: "0"
65
+ version:
56
66
  description: TourBus, a web stress-testing tool that combines complex 'tour' definitions with scalable concurrent testing
57
67
  email: github@shinybit.com
58
68
  executables:
@@ -80,6 +90,7 @@ files:
80
90
  - MIT-LICENSE
81
91
  has_rdoc: true
82
92
  homepage: http://github.com/dbrady/tourbus/
93
+ licenses:
83
94
  post_install_message:
84
95
  rdoc_options:
85
96
  - --line-numbers
@@ -105,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
116
  requirements: []
106
117
 
107
118
  rubyforge_project:
108
- rubygems_version: 1.2.0
119
+ rubygems_version: 1.3.5
109
120
  signing_key:
110
121
  specification_version: 2
111
122
  summary: TourBus web stress-testing tool