webspicy 0.1.0.pre.rc4 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +20 -3
- data/lib/webspicy/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d404dff3afb455b57fea64ddf9b9b7ab90efe6a3
|
4
|
+
data.tar.gz: 7b101990a2060a96f3281e2effd2cf38839c562b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d6032e474a7d2379a93efbb0193530df7ade3bb1ac55752195bcddbbcc56b52823e7619fa5a371028d61bf8e758b3f40186efea79e71edc13310a01c5e7dc93
|
7
|
+
data.tar.gz: 44e5f5191c37f58d8c3623a91bab72b1b77a2f379497b77f964242e4ac37bc987220f9d01e4a305bd4e2694ac0e18885159a2a71cec9412ee32c073f060a49a3
|
data/README.md
CHANGED
@@ -1,7 +1,24 @@
|
|
1
1
|
# Webspicy
|
2
2
|
|
3
|
-
A description, specification and test framework for
|
3
|
+
A description, specification and test framework for web services seen as black
|
4
|
+
box software operations.
|
4
5
|
|
5
|
-
##
|
6
|
+
## Features
|
6
7
|
|
7
|
-
|
8
|
+
* Declarative description of RESTful web-services + their tests
|
9
|
+
|
10
|
+
* Framework/language agnostic: Webspicy is written in Ruby, but can be used to
|
11
|
+
test web services in any language / framework.
|
12
|
+
|
13
|
+
* Black box testing: Webspicy focuses on web services seen as blackboxes. It has
|
14
|
+
no knowledge of the implementation, and focuses on HTTP and input/output data
|
15
|
+
instead. Investing in such testing makes those tests stables and your API better.
|
16
|
+
|
17
|
+
* Extra goodness for Rubyists: being written in ruby, Webspicy also supports
|
18
|
+
testing Rack applications directly (through rack/test)
|
19
|
+
|
20
|
+
## Getting started
|
21
|
+
|
22
|
+
Please have a look at the example first. It contains a simple Sinatra application
|
23
|
+
with GET and POST restful services tested with the framework. The Rakefile contains
|
24
|
+
the necessary tasks to run those tests.
|
data/lib/webspicy/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webspicy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bernard Lambeau
|
@@ -168,9 +168,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
168
168
|
version: '0'
|
169
169
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
|
-
- - "
|
171
|
+
- - ">="
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version:
|
173
|
+
version: '0'
|
174
174
|
requirements: []
|
175
175
|
rubyforge_project:
|
176
176
|
rubygems_version: 2.6.11
|