spectest 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ .bundle/*
2
+ .idea/*
3
+ .svn/*
4
+ pkg/*
5
+ *.gem
6
+ *.swp
7
+ *.swo
8
+ Gemfile.lock
9
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in spectest.gemspec
4
+ gemspec
data/HISTORY.md ADDED
@@ -0,0 +1,6 @@
1
+ Change Log and History
2
+ ======================
3
+
4
+ ## Version 0.0.1 / 2011-11-12
5
+
6
+ Initial creation of the gem framework.
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+ Copyright (c) 2011 Jeff Nyman
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining
5
+ a copy of this software and associated documentation files (the
6
+ "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish,
8
+ distribute, sublicense, and/or sell copies of the Software, and to
9
+ permit persons to whom the Software is furnished to do so, subject to
10
+ the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # SpecTest
2
+
3
+ This gem is designed to provide a testing framework for creating executable test specifications.
4
+
5
+
6
+
7
+ ## Copyright
8
+
9
+ Copyright (c) 2011 Jeff Nyman. See LICENSE for details.
10
+
11
+ In short, SpecTest is under an MIT license. Since I'm borrowing from many other people, just as they borrowed from many other people before them, I'm just establishing I wrote _this_ particular version. (If nothing else, this means you know who to blame.)
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/lib/spectest.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "spectest/version"
2
+
3
+ module SpecTest
4
+
5
+ end
@@ -0,0 +1,3 @@
1
+ module SpecTest
2
+ VERSION = "0.0.1"
3
+ end
data/spectest.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "spectest/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "spectest"
7
+ s.version = SpecTest::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.license = "MIT"
10
+ s.authors = ["Jeff Nyman"]
11
+ s.email = ["jeffnyman@gmail.com"]
12
+ s.homepage = "https://github.com/jnyman/spectest"
13
+ s.summary = %q{Acceptance Test Specification and Execution Framework}
14
+ s.description = %q{Test framework for specifying tests and executing tests.}
15
+
16
+ s.required_ruby_version = '>= 1.9.2'
17
+ s.rubyforge_project = "spectest"
18
+
19
+ s.files = `git ls-files`.split("\n")
20
+ s.test_files = `git ls-files -- {test,spec,specs}/*`.split("\n")
21
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
22
+ s.require_paths = ["lib"]
23
+
24
+ s.add_runtime_dependency 'watir-webdriver', '>= 0.3.9'
25
+ s.add_runtime_dependency 'selenium-webdriver', '>= 2.12.1'
26
+
27
+ s.add_development_dependency 'rspec', '>= 2.7.0'
28
+ s.add_development_dependency 'cucumber', '>= 1.1.2'
29
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spectest
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jeff Nyman
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-11-12 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: watir-webdriver
16
+ requirement: &2229264 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.3.9
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *2229264
25
+ - !ruby/object:Gem::Dependency
26
+ name: selenium-webdriver
27
+ requirement: &2227284 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: 2.12.1
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *2227284
36
+ - !ruby/object:Gem::Dependency
37
+ name: rspec
38
+ requirement: &2226504 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: 2.7.0
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *2226504
47
+ - !ruby/object:Gem::Dependency
48
+ name: cucumber
49
+ requirement: &2225508 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.1.2
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *2225508
58
+ description: Test framework for specifying tests and executing tests.
59
+ email:
60
+ - jeffnyman@gmail.com
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - .gitignore
66
+ - Gemfile
67
+ - HISTORY.md
68
+ - LICENSE
69
+ - README.md
70
+ - Rakefile
71
+ - lib/spectest.rb
72
+ - lib/spectest/version.rb
73
+ - spectest.gemspec
74
+ homepage: https://github.com/jnyman/spectest
75
+ licenses:
76
+ - MIT
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ! '>='
85
+ - !ruby/object:Gem::Version
86
+ version: 1.9.2
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ! '>='
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project: spectest
95
+ rubygems_version: 1.8.11
96
+ signing_key:
97
+ specification_version: 3
98
+ summary: Acceptance Test Specification and Execution Framework
99
+ test_files: []
100
+ has_rdoc: