petitest-spec 0.3.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 210c0267a02289a8dd80c5434a7b36feadf51a53
4
+ data.tar.gz: 1ad349a656a28c77b628258d3349a034a392f71c
5
+ SHA512:
6
+ metadata.gz: 4b3bd8a6212666b29dbafea8579b1807d881227d7f6347bc8934a763182b2efcb46dd87b00bd93a0e7ce6cc5c9cb60c4283e13a0cab8bc6609082541d4a0f4e2
7
+ data.tar.gz: 74325d5cc88f08940103b7c8bed0a70e02eadaccd4bdad601040f9a62c6c4c0e77e450cbd4f5644b4ec24d5387ecf7a8bf2a310b0d387b58c90cd83c5eeaf795
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ /.bundle/
2
+ /Gemfile.lock
3
+ /pkg/
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## v0.3.1
2
+
3
+ - 1st Release :tada:
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in petitest-spec.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Ryo Nakamura
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,69 @@
1
+ # Petitest::Spec
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/petitest-spec.svg)](https://rubygems.org/gems/petitest-spec)
4
+ [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/github/petitest/petitest-spec)
5
+
6
+ BDD style DSL for [Petitest](https://github.com/petitest/petitest).
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem "petitest"
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ ```bash
19
+ bundle
20
+ ```
21
+
22
+ Or install it yourself as:
23
+
24
+ ```bash
25
+ gem install petitest
26
+ ```
27
+
28
+ ## Usage
29
+
30
+ Require `"petitest/spec"` and extend `Petitest::Spec` into your test class.
31
+
32
+ ```ruby
33
+ require "petitest/autorun"
34
+ require "petitest/dsl"
35
+
36
+ class ExampleTest < Petitest::Test
37
+ include ::Petitest::Spec
38
+
39
+ # ... your tests ...
40
+ end
41
+ ```
42
+
43
+ ### .describe and .context
44
+
45
+ Nest a test group with description. `.context` is an alias.
46
+
47
+ ```ruby
48
+ describe do "GET /me"
49
+ context "without logged-in" do
50
+ it "returns 401" do
51
+ assert { response.status == 200 }
52
+ end
53
+ end
54
+ end
55
+ ```
56
+
57
+ ### .it and .specify
58
+
59
+ Define a test with description. `.specify` is an alias.
60
+
61
+ ```ruby
62
+ it "returns foo" do
63
+ assert { x == "foo" }
64
+ end
65
+
66
+ specify "x is foo" do
67
+ assert { x == "foo" }
68
+ end
69
+ ```
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new do |task|
5
+ task.pattern = "test/**/*_test.rb"
6
+ end
7
+
8
+ task default: :test
@@ -0,0 +1,20 @@
1
+ require "petitest/dsl"
2
+ require "petitest/spec/version"
3
+
4
+ module Petitest
5
+ module Spec
6
+ class << self
7
+ # @note Override
8
+ def extended(klass)
9
+ klass.extend ::Petitest::DSL
10
+
11
+ klass.singleton_class.class_eval do
12
+ alias_method :context, :sub_test
13
+ alias_method :describe, :sub_test
14
+ alias_method :it, :test
15
+ alias_method :specify, :test
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,5 @@
1
+ module Petitest
2
+ module Spec
3
+ VERSION = "0.3.1"
4
+ end
5
+ end
@@ -0,0 +1,23 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "petitest/spec/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "petitest-spec"
7
+ spec.version = Petitest::Spec::VERSION
8
+ spec.authors = ["Ryo Nakamura"]
9
+ spec.email = ["r7kamura@gmail.com"]
10
+ spec.summary = "BDD style DSL for Petitest."
11
+ spec.homepage = "https://github.com/petitest/petitest-spec"
12
+ spec.license = "MIT"
13
+
14
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
15
+ f.match(%r{^(test|spec|features)/})
16
+ end
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_dependency "petitest", "~> 0.3.1"
20
+ spec.add_dependency "petitest-dsl", "~> 0.3.0"
21
+ spec.add_development_dependency "bundler", "~> 1.14"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: petitest-spec
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.1
5
+ platform: ruby
6
+ authors:
7
+ - Ryo Nakamura
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-03-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: petitest
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.3.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.3.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: petitest-dsl
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.3.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.3.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.14'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.14'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ description:
70
+ email:
71
+ - r7kamura@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - CHANGELOG.md
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - lib/petitest/spec.rb
83
+ - lib/petitest/spec/version.rb
84
+ - petitest-spec.gemspec
85
+ homepage: https://github.com/petitest/petitest-spec
86
+ licenses:
87
+ - MIT
88
+ metadata: {}
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubyforge_project:
105
+ rubygems_version: 2.5.2
106
+ signing_key:
107
+ specification_version: 4
108
+ summary: BDD style DSL for Petitest.
109
+ test_files: []