Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/digitalsonic/easy_tester
EasyTester is a simple test tool for WebService and Web.
https://github.com/digitalsonic/easy_tester
Last synced: about 1 month ago
JSON representation
EasyTester is a simple test tool for WebService and Web.
- Host: GitHub
- URL: https://github.com/digitalsonic/easy_tester
- Owner: digitalsonic
- License: other
- Created: 2010-01-06T11:23:41.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-09-06T08:12:21.000Z (over 14 years ago)
- Last Synced: 2023-03-10T22:27:44.044Z (almost 2 years ago)
- Language: Ruby
- Homepage:
- Size: 152 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
- License: LICENSE
Awesome Lists containing this project
README
h1. EasyTester README
p. EasyTester is a simple test tool for *WebService* and *Web* (__eg. HTTP gateway.do response__). All you have to do is to write a short script and prepare the testcases.
h2. Installation
p. 1. Download the Sources
p. 2. Build Gem File
You can use either gem or rake command to build the gem file (easytester-x.x.x.gem).
@gem build Rakefile@
or
@rake gem@p. 3. Install Gem File
Find the .gem file just built, and run this command:
@gem install easytester-x.x.x.gem@h2. Dependencies
p. 1. Soap4R
"Soap4R":http://dev.ctor.org/soap4r is used to invoke WebServices, and wsdl2ruby.rb is used to generate stubs.
@gem install soap4r@p. 2. Nokogiri
"Nokogiri":http://nokogiri.org/ is needed when parsing XPath.
@gem install nokogiri@p. __NOTE: All the dependencies are installed automatically.__