rspec-capybara-simple_form-rails 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.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +55 -0
- data/Rakefile +1 -0
- data/lib/rspec/capybara/simple_form.rb +3 -0
- data/lib/rspec/capybara/simple_form/field_matchers.rb +29 -0
- data/lib/rspec/capybara/simple_form/rails/version.rb +9 -0
- data/lib/rspec/rspec-capybara-simple_form-rails.rb +0 -0
- data/rspec-capybara-simple_form-rails.gemspec +26 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 288311e87c2999fbeb2b49ecf2370b9c27bae9ac
|
4
|
+
data.tar.gz: a7ba4c3bfd7127b08231d3adbeb28f04d051e40a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5cd8ef8857098d34bc3079933e5ad43388eb24d476e8f6b65f9aaed8308a82cd06bc0a19b5433a5c6cc4da3f7b4720c6660ca7a1783a39d9d465a84a1707b0a9
|
7
|
+
data.tar.gz: 1208679449274b9f08102e28e46ef22b227668213d226ec6b00fafbdf546a79e23dfa81b2aeee0c6ab673454ca79a0f0b969476d0f5665c06c61472ec55e46c3
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 dei79
|
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,55 @@
|
|
1
|
+
# Rspec::Capybara::SimpleForm::Rails
|
2
|
+
|
3
|
+
A small rspec extension to verify simple form elements with the help of capybara.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'rspec-capybara-simple_form-rails'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Add the following lines to your spec_helper.rb
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
# load capybara
|
19
|
+
require 'capybara/rspec'
|
20
|
+
require 'rspec/capybara/simple_form'
|
21
|
+
```
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
In a view spec just use the following matchers
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
have_input_field(model, attribute, options)
|
29
|
+
have_textarea_field(model, attribute, options)
|
30
|
+
```
|
31
|
+
|
32
|
+
The following example illustrates a full example:
|
33
|
+
|
34
|
+
```ruby
|
35
|
+
it "renders the form correct" do
|
36
|
+
|
37
|
+
# assign model
|
38
|
+
@app = assign(:app, build(:app))
|
39
|
+
|
40
|
+
# render the view
|
41
|
+
render
|
42
|
+
|
43
|
+
# do the checks
|
44
|
+
rendered.should have_input_field(@app, :name, :required => true)
|
45
|
+
rendered.should have_textarea_field(@app, :description, :required => true)
|
46
|
+
end
|
47
|
+
```
|
48
|
+
|
49
|
+
## Contributing
|
50
|
+
|
51
|
+
1. Fork it
|
52
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
53
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
54
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
55
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,29 @@
|
|
1
|
+
RSpec::Matchers.define :have_field do |model, name, ftype, dtype, options = {}|
|
2
|
+
match do |rendered|
|
3
|
+
# define the field key
|
4
|
+
field_key = "#{model.class.to_s.downcase}_#{name.to_s.downcase}"
|
5
|
+
|
6
|
+
# build the check string
|
7
|
+
checkstring = "#{dtype}"
|
8
|
+
checkstring = "#{checkstring}.required" if options[:required]
|
9
|
+
|
10
|
+
# do our checks
|
11
|
+
return false unless rendered.should have_selector("form div.control-group.#{checkstring}.#{field_key} label.#{checkstring}")
|
12
|
+
return false unless rendered.should have_selector("form div.control-group.#{checkstring}.#{field_key} #{ftype}.#{checkstring}##{field_key}")
|
13
|
+
|
14
|
+
# done
|
15
|
+
true
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
RSpec::Matchers.define :have_input_field do |model, name, options = {}|
|
20
|
+
match do |rendered|
|
21
|
+
rendered.should have_field(model, name, 'input[type=text]','string', options)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
RSpec::Matchers.define :have_textarea_field do |model, name, options = {}|
|
26
|
+
match do |rendered|
|
27
|
+
rendered.should have_field(model, name, 'textarea','text', options)
|
28
|
+
end
|
29
|
+
end
|
File without changes
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rspec/capybara/simple_form/rails/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "rspec-capybara-simple_form-rails"
|
8
|
+
spec.version = Rspec::Capybara::SimpleForm::Rails::VERSION
|
9
|
+
spec.authors = ["dei79"]
|
10
|
+
spec.email = ["dirk.eisenberg@gmail.com"]
|
11
|
+
spec.description = %q{A simple gem which contains a couple of matches for capybara and simpelform tests}
|
12
|
+
spec.summary = %q{A simple gem which contains a couple of matches for capybara and simpelform tests}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
|
24
|
+
spec.add_runtime_dependency "capybara", "~> 2.2.0"
|
25
|
+
spec.add_runtime_dependency "rspec-rails", "~> 2.14.0"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rspec-capybara-simple_form-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- dei79
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-12-30 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.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: capybara
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.2.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.2.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 2.14.0
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 2.14.0
|
69
|
+
description: A simple gem which contains a couple of matches for capybara and simpelform
|
70
|
+
tests
|
71
|
+
email:
|
72
|
+
- dirk.eisenberg@gmail.com
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- .gitignore
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE.txt
|
80
|
+
- README.md
|
81
|
+
- Rakefile
|
82
|
+
- lib/rspec/capybara/simple_form.rb
|
83
|
+
- lib/rspec/capybara/simple_form/field_matchers.rb
|
84
|
+
- lib/rspec/capybara/simple_form/rails/version.rb
|
85
|
+
- lib/rspec/rspec-capybara-simple_form-rails.rb
|
86
|
+
- rspec-capybara-simple_form-rails.gemspec
|
87
|
+
homepage: ''
|
88
|
+
licenses:
|
89
|
+
- MIT
|
90
|
+
metadata: {}
|
91
|
+
post_install_message:
|
92
|
+
rdoc_options: []
|
93
|
+
require_paths:
|
94
|
+
- lib
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - '>='
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
requirements: []
|
106
|
+
rubyforge_project:
|
107
|
+
rubygems_version: 2.1.11
|
108
|
+
signing_key:
|
109
|
+
specification_version: 4
|
110
|
+
summary: A simple gem which contains a couple of matches for capybara and simpelform
|
111
|
+
tests
|
112
|
+
test_files: []
|
113
|
+
has_rdoc:
|