testable 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +35 -0
- data/Rakefile +2 -0
- data/lib/testable/version.rb +3 -0
- data/lib/testable.rb +4 -0
- data/testable.gemspec +35 -0
- metadata +86 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 031dbc54e8dc64001ebaa60e2ca1ad328079aa75
|
4
|
+
data.tar.gz: 07421e4ea533d0b585c1968ba219cfc3d331025c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5e4a064419067459f39625e9410cacf8f1bf5dde82c75c3c454fa534638216ef44c372915ed041b48a28caa3bddb78e261912efb3e57b3a9c7d0d03b21d25575
|
7
|
+
data.tar.gz: 6af38a3912356e9812297d96c42954a4a61049b6db1f69beebf622958f059f6ff2ce1cce930d2f997b54a12575b431bdec36925ff71bdf8578868cf4c1e5ee1d
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Jeff Nyman
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# Testable
|
2
|
+
|
3
|
+
Testable is a test solution micro-framework.
|
4
|
+
|
5
|
+
A micro-framework provides a focused solution, which means it does one thing and one thing only, instead of trying to solve each and every problem. While doing that one thing it does well, I believe the micro-framework should do it while maintaining a balance between being expressive and concise. Any such micro-framework should be able to serve as one component of your own custom modularized framework, allowing you to compose solutions. To that end, you can use Testable directly as an automated test library or you can use it with other tools such as MiniTest, RSpec, Cucumber, and so on.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'testable'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself with:
|
20
|
+
|
21
|
+
$ gem install testable
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
Instructions on using Testable as part of your test solution will be coming soon once the API is fleshed out.
|
26
|
+
|
27
|
+
1. [Fork the project](http://gun.io/blog/how-to-github-fork-branch-and-pull-request/).
|
28
|
+
2. Create a feature branch. (`git checkout -b my-new-feature`)
|
29
|
+
3. Commit your changes. (`git commit -am 'new feature'`)
|
30
|
+
4. Push the branch. (`git push origin my-new-feature`)
|
31
|
+
5. Create a new [pull request](https://help.github.com/articles/using-pull-requests).
|
32
|
+
|
33
|
+
## Copyright
|
34
|
+
|
35
|
+
Testable is distributed under the MIT license. See the [LICENSE](https://github.com/jnyman/testable/blob/master/LICENSE.txt) file for details.
|
data/Rakefile
ADDED
data/lib/testable.rb
ADDED
data/testable.gemspec
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'testable/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "testable"
|
8
|
+
spec.version = Testable::VERSION
|
9
|
+
spec.authors = ["Jeff Nyman"]
|
10
|
+
spec.email = ["jeffnyman@gmail.com"]
|
11
|
+
spec.summary = %q{A Semantically Clean Fluent Interface Test Framework}
|
12
|
+
spec.description = %q{
|
13
|
+
Testable is a micro-framework that allows you to describe your application
|
14
|
+
in terms of activity and page definitions. Those definitions can then be
|
15
|
+
referenced by test libraries using the DSL that Testable provides.
|
16
|
+
}
|
17
|
+
spec.homepage = "https://github.com/jnyman/testable"
|
18
|
+
spec.license = "MIT"
|
19
|
+
|
20
|
+
spec.files = `git ls-files -z`.split("\x0")
|
21
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
22
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
23
|
+
spec.require_paths = %w(lib)
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
+
|
28
|
+
spec.post_install_message = %{
|
29
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
30
|
+
|
31
|
+
Testable #{Testable::VERSION} has been installed.
|
32
|
+
|
33
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
34
|
+
}
|
35
|
+
end
|
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: testable
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeff Nyman
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-08-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: "\n Testable is a micro-framework that allows you to describe your
|
42
|
+
application\n in terms of activity and page definitions. Those definitions can
|
43
|
+
then be\n referenced by test libraries using the DSL that Testable provides.\n
|
44
|
+
\ "
|
45
|
+
email:
|
46
|
+
- jeffnyman@gmail.com
|
47
|
+
executables: []
|
48
|
+
extensions: []
|
49
|
+
extra_rdoc_files: []
|
50
|
+
files:
|
51
|
+
- .gitignore
|
52
|
+
- Gemfile
|
53
|
+
- LICENSE.txt
|
54
|
+
- README.md
|
55
|
+
- Rakefile
|
56
|
+
- lib/testable.rb
|
57
|
+
- lib/testable/version.rb
|
58
|
+
- testable.gemspec
|
59
|
+
homepage: https://github.com/jnyman/testable
|
60
|
+
licenses:
|
61
|
+
- MIT
|
62
|
+
metadata: {}
|
63
|
+
post_install_message: "\n(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n\n
|
64
|
+
\ Testable 0.0.1 has been installed.\n\n(::) (::) (::) (::) (::) (::) (::) (::)
|
65
|
+
(::) (::) (::) (::)\n "
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - '>='
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - '>='
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
requirements: []
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 2.0.14
|
82
|
+
signing_key:
|
83
|
+
specification_version: 4
|
84
|
+
summary: A Semantically Clean Fluent Interface Test Framework
|
85
|
+
test_files: []
|
86
|
+
has_rdoc:
|