Fingertips-on-test-spec 0.1.2
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 +1 -0
- data/LICENSE +20 -0
- data/README +12 -0
- data/Rakefile +30 -0
- data/VERSION +1 -0
- data/dot.autotest +93 -0
- data/lib/test/spec/add_allow_switch.rb +53 -0
- data/lib/test/spec/rails/controller_helpers.rb +40 -0
- data/lib/test/spec/rails/expectations.rb +196 -0
- data/lib/test/spec/rails/macros/authorization.rb +65 -0
- data/lib/test/spec/rails/macros.rb +78 -0
- data/lib/test/spec/rails/request_helpers.rb +11 -0
- data/lib/test/spec/rails/response_helpers.rb +42 -0
- data/lib/test/spec/rails/spec_responder.rb +12 -0
- data/lib/test/spec/rails/test_spec_ext.rb +23 -0
- data/lib/test/spec/rails.rb +41 -0
- data/lib/test/spec/share.rb +48 -0
- data/on-test-spec.gemspec +69 -0
- data/test/add_allow_switch_test.rb +104 -0
- data/test/expectations_test.rb +467 -0
- data/test/macros/authorization_test.rb +80 -0
- data/test/macros/base_test.rb +78 -0
- data/test/share_test.rb +52 -0
- data/test/test_helper.rb +8 -0
- metadata +85 -0
metadata
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Fingertips-on-test-spec
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Manfred Stienstra
|
8
|
+
- Eloy Duran
|
9
|
+
- Cristi Balan
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
|
14
|
+
date: 2009-08-24 00:00:00 -07:00
|
15
|
+
default_executable:
|
16
|
+
dependencies: []
|
17
|
+
|
18
|
+
description: Rails plugin to make testing Rails on test/spec easier.
|
19
|
+
email: eloy.de.enige@gmail.com
|
20
|
+
executables: []
|
21
|
+
|
22
|
+
extensions: []
|
23
|
+
|
24
|
+
extra_rdoc_files:
|
25
|
+
- LICENSE
|
26
|
+
- README
|
27
|
+
files:
|
28
|
+
- .gitignore
|
29
|
+
- LICENSE
|
30
|
+
- README
|
31
|
+
- Rakefile
|
32
|
+
- VERSION
|
33
|
+
- dot.autotest
|
34
|
+
- lib/test/spec/add_allow_switch.rb
|
35
|
+
- lib/test/spec/rails.rb
|
36
|
+
- lib/test/spec/rails/controller_helpers.rb
|
37
|
+
- lib/test/spec/rails/expectations.rb
|
38
|
+
- lib/test/spec/rails/macros.rb
|
39
|
+
- lib/test/spec/rails/macros/authorization.rb
|
40
|
+
- lib/test/spec/rails/request_helpers.rb
|
41
|
+
- lib/test/spec/rails/response_helpers.rb
|
42
|
+
- lib/test/spec/rails/spec_responder.rb
|
43
|
+
- lib/test/spec/rails/test_spec_ext.rb
|
44
|
+
- lib/test/spec/share.rb
|
45
|
+
- on-test-spec.gemspec
|
46
|
+
- test/add_allow_switch_test.rb
|
47
|
+
- test/expectations_test.rb
|
48
|
+
- test/macros/authorization_test.rb
|
49
|
+
- test/macros/base_test.rb
|
50
|
+
- test/share_test.rb
|
51
|
+
- test/test_helper.rb
|
52
|
+
has_rdoc: true
|
53
|
+
homepage: http://github.com/Fingertips/on-test-spec
|
54
|
+
licenses:
|
55
|
+
post_install_message:
|
56
|
+
rdoc_options:
|
57
|
+
- --charset=UTF-8
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: "0"
|
65
|
+
version:
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: "0"
|
71
|
+
version:
|
72
|
+
requirements: []
|
73
|
+
|
74
|
+
rubyforge_project:
|
75
|
+
rubygems_version: 1.3.5
|
76
|
+
signing_key:
|
77
|
+
specification_version: 3
|
78
|
+
summary: Rails plugin to make testing Rails on test/spec easier.
|
79
|
+
test_files:
|
80
|
+
- test/add_allow_switch_test.rb
|
81
|
+
- test/expectations_test.rb
|
82
|
+
- test/macros/authorization_test.rb
|
83
|
+
- test/macros/base_test.rb
|
84
|
+
- test/share_test.rb
|
85
|
+
- test/test_helper.rb
|