spectie 0.0.3
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/LICENSE +21 -0
- data/README.rdoc +85 -0
- data/Rakefile +8 -0
- data/VERSION.yml +4 -0
- data/initialize.rb +6 -0
- data/lib/spectie.rb +3 -0
- data/lib/spectie/configuration.rb +10 -0
- data/lib/spectie/main.rb +26 -0
- data/lib/spectie/rails.rb +2 -0
- data/lib/spectie/rails_story_example_group.rb +55 -0
- data/lib/spectie/selenium.rb +3 -0
- data/lib/spectie/selenium/configuration.rb +27 -0
- data/lib/spectie/selenium/story_example_group.rb +51 -0
- data/lib/spectie/story_example_group_methods.rb +40 -0
- data/rake_tasks/package.rake +51 -0
- data/rake_tasks/publish.rake +40 -0
- data/rake_tasks/spec.rake +42 -0
- data/rake_tasks/utility.rake +11 -0
- data/rdoc/classes/Spectie.html +135 -0
- data/rdoc/classes/Spectie/Configuration.html +175 -0
- data/rdoc/classes/Spectie/Configuration/ForScenarios.html +111 -0
- data/rdoc/classes/Spectie/Configuration/Selenium.html +220 -0
- data/rdoc/classes/Spectie/Main.html +161 -0
- data/rdoc/classes/Spectie/RailsStoryExampleGroup.html +118 -0
- data/rdoc/classes/Spectie/SeleniumStoryExampleGroup.html +119 -0
- data/rdoc/classes/Spectie/StoryExampleGroupMethods.html +254 -0
- data/rdoc/created.rid +1 -0
- data/rdoc/files/README_rdoc.html +266 -0
- data/rdoc/files/lib/spectie/configuration_rb.html +101 -0
- data/rdoc/files/lib/spectie/main_rb.html +108 -0
- data/rdoc/files/lib/spectie/rails_rb.html +109 -0
- data/rdoc/files/lib/spectie/rails_story_example_group_rb.html +182 -0
- data/rdoc/files/lib/spectie/selenium/configuration_rb.html +101 -0
- data/rdoc/files/lib/spectie/selenium/story_example_group_rb.html +101 -0
- data/rdoc/files/lib/spectie/selenium_rb.html +110 -0
- data/rdoc/files/lib/spectie/story_example_group_methods_rb.html +101 -0
- data/rdoc/files/lib/spectie_rb.html +110 -0
- data/rdoc/fr_class_index.html +34 -0
- data/rdoc/fr_file_index.html +36 -0
- data/rdoc/fr_method_index.html +38 -0
- data/rdoc/index.html +24 -0
- data/rdoc/rdoc-style.css +208 -0
- data/script/selenium_webapp +45 -0
- data/script/spec +10 -0
- data/spec/example_run_state_tracking.rb +65 -0
- data/spec/selenium_config.rb +11 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/spectie/rails_helper.rb +29 -0
- data/spec/spectie/rails_story_example_group_spec.rb +59 -0
- data/spec/spectie/selenium/configuration_spec.rb +91 -0
- data/spec/spectie/selenium/spec_helper.rb +16 -0
- data/spec/spectie/selenium/story_example_group_spec.rb +132 -0
- data/spec/spectie/spec_helper.rb +1 -0
- data/spec/spectie/story_example_group_methods_spec.rb +217 -0
- data/spec/spectie_spec.rb +46 -0
- data/spec/support/rails_app/controllers/application_controller.rb +2 -0
- data/tags +19899 -0
- metadata +125 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
begin
|
2
|
+
require 'spec/rake/spectask'
|
3
|
+
rescue LoadError
|
4
|
+
puts "RSpec not available. Install it with: sudo gem install rspec"
|
5
|
+
end
|
6
|
+
|
7
|
+
namespace :spec do
|
8
|
+
namespace :suite do
|
9
|
+
desc ""
|
10
|
+
Spec::Rake::SpecTask.new(:core) do |spec|
|
11
|
+
spec.spec_files = ['spec/spectie_spec.rb', 'spec/spectie/story_example_group_methods_spec.rb']
|
12
|
+
end
|
13
|
+
|
14
|
+
desc ""
|
15
|
+
Spec::Rake::SpecTask.new(:rails) do |spec|
|
16
|
+
spec.spec_files = ['spec/spectie/rails_story_example_group_spec.rb']
|
17
|
+
end
|
18
|
+
|
19
|
+
desc ""
|
20
|
+
Spec::Rake::SpecTask.new(:selenium) do |spec|
|
21
|
+
spec.spec_files = ['spec/spectie/selenium/**/*_spec.rb']
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
(all = [:core, :rails, :selenium]).each do |example_suite|
|
26
|
+
desc "Run #{example_suite} example suite"
|
27
|
+
task example_suite do
|
28
|
+
puts "\nRunning suite: #{example_suite}"
|
29
|
+
Rake.application["spec:suite:#{example_suite}".to_sym].invoke
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
task :all => all
|
34
|
+
|
35
|
+
# Spec::Rake::SpecTask.new(:rcov) do |spec|
|
36
|
+
# # spec.libs << 'lib'
|
37
|
+
# spec.pattern = 'spec/**/*_spec.rb'
|
38
|
+
# spec.rcov = true
|
39
|
+
# end
|
40
|
+
end
|
41
|
+
|
42
|
+
task :default => ["spec:core", "spec:rails"]
|
@@ -0,0 +1,11 @@
|
|
1
|
+
desc "Generate ctags file for project"
|
2
|
+
task :tags do
|
3
|
+
fail unless system("ctags -R .")
|
4
|
+
end
|
5
|
+
|
6
|
+
desc "Remove generated files and directories"
|
7
|
+
task :clean do
|
8
|
+
Rake.application["clobber_rdoc"].invoke
|
9
|
+
command = "rm -rf pkg"
|
10
|
+
puts command; system(command)
|
11
|
+
end
|
@@ -0,0 +1,135 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>Module: Spectie</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="classHeader">
|
50
|
+
<table class="header-table">
|
51
|
+
<tr class="top-aligned-row">
|
52
|
+
<td><strong>Module</strong></td>
|
53
|
+
<td class="class-name-in-header">Spectie</td>
|
54
|
+
</tr>
|
55
|
+
<tr class="top-aligned-row">
|
56
|
+
<td><strong>In:</strong></td>
|
57
|
+
<td>
|
58
|
+
<a href="../files/lib/spectie/configuration_rb.html">
|
59
|
+
lib/spectie/configuration.rb
|
60
|
+
</a>
|
61
|
+
<br />
|
62
|
+
<a href="../files/lib/spectie/main_rb.html">
|
63
|
+
lib/spectie/main.rb
|
64
|
+
</a>
|
65
|
+
<br />
|
66
|
+
<a href="../files/lib/spectie/rails_story_example_group_rb.html">
|
67
|
+
lib/spectie/rails_story_example_group.rb
|
68
|
+
</a>
|
69
|
+
<br />
|
70
|
+
<a href="../files/lib/spectie/selenium/configuration_rb.html">
|
71
|
+
lib/spectie/selenium/configuration.rb
|
72
|
+
</a>
|
73
|
+
<br />
|
74
|
+
<a href="../files/lib/spectie/selenium/story_example_group_rb.html">
|
75
|
+
lib/spectie/selenium/story_example_group.rb
|
76
|
+
</a>
|
77
|
+
<br />
|
78
|
+
<a href="../files/lib/spectie/story_example_group_methods_rb.html">
|
79
|
+
lib/spectie/story_example_group_methods.rb
|
80
|
+
</a>
|
81
|
+
<br />
|
82
|
+
</td>
|
83
|
+
</tr>
|
84
|
+
|
85
|
+
</table>
|
86
|
+
</div>
|
87
|
+
<!-- banner header -->
|
88
|
+
|
89
|
+
<div id="bodyContent">
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
<div id="contextContent">
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
</div>
|
98
|
+
|
99
|
+
|
100
|
+
</div>
|
101
|
+
|
102
|
+
|
103
|
+
<!-- if includes -->
|
104
|
+
|
105
|
+
<div id="section">
|
106
|
+
|
107
|
+
<div id="class-list">
|
108
|
+
<h3 class="section-bar">Classes and Modules</h3>
|
109
|
+
|
110
|
+
Module <a href="Spectie/Configuration.html" class="link">Spectie::Configuration</a><br />
|
111
|
+
Module <a href="Spectie/Main.html" class="link">Spectie::Main</a><br />
|
112
|
+
Module <a href="Spectie/StoryExampleGroupMethods.html" class="link">Spectie::StoryExampleGroupMethods</a><br />
|
113
|
+
Class <a href="Spectie/RailsStoryExampleGroup.html" class="link">Spectie::RailsStoryExampleGroup</a><br />
|
114
|
+
Class <a href="Spectie/SeleniumStoryExampleGroup.html" class="link">Spectie::SeleniumStoryExampleGroup</a><br />
|
115
|
+
|
116
|
+
</div>
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
<!-- if method_list -->
|
125
|
+
|
126
|
+
|
127
|
+
</div>
|
128
|
+
|
129
|
+
|
130
|
+
<div id="validator-badges">
|
131
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
132
|
+
</div>
|
133
|
+
|
134
|
+
</body>
|
135
|
+
</html>
|
@@ -0,0 +1,175 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>Module: Spectie::Configuration</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="classHeader">
|
50
|
+
<table class="header-table">
|
51
|
+
<tr class="top-aligned-row">
|
52
|
+
<td><strong>Module</strong></td>
|
53
|
+
<td class="class-name-in-header">Spectie::Configuration</td>
|
54
|
+
</tr>
|
55
|
+
<tr class="top-aligned-row">
|
56
|
+
<td><strong>In:</strong></td>
|
57
|
+
<td>
|
58
|
+
<a href="../../files/lib/spectie/configuration_rb.html">
|
59
|
+
lib/spectie/configuration.rb
|
60
|
+
</a>
|
61
|
+
<br />
|
62
|
+
<a href="../../files/lib/spectie/selenium/configuration_rb.html">
|
63
|
+
lib/spectie/selenium/configuration.rb
|
64
|
+
</a>
|
65
|
+
<br />
|
66
|
+
</td>
|
67
|
+
</tr>
|
68
|
+
|
69
|
+
</table>
|
70
|
+
</div>
|
71
|
+
<!-- banner header -->
|
72
|
+
|
73
|
+
<div id="bodyContent">
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
<div id="contextContent">
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
</div>
|
82
|
+
|
83
|
+
<div id="method-list">
|
84
|
+
<h3 class="section-bar">Methods</h3>
|
85
|
+
|
86
|
+
<div class="name-list">
|
87
|
+
<a href="#M000004">scenarios</a>
|
88
|
+
<a href="#M000005">selenium</a>
|
89
|
+
</div>
|
90
|
+
</div>
|
91
|
+
|
92
|
+
</div>
|
93
|
+
|
94
|
+
|
95
|
+
<!-- if includes -->
|
96
|
+
|
97
|
+
<div id="section">
|
98
|
+
|
99
|
+
<div id="class-list">
|
100
|
+
<h3 class="section-bar">Classes and Modules</h3>
|
101
|
+
|
102
|
+
Class <a href="Configuration/ForScenarios.html" class="link">Spectie::Configuration::ForScenarios</a><br />
|
103
|
+
Class <a href="Configuration/Selenium.html" class="link">Spectie::Configuration::Selenium</a><br />
|
104
|
+
|
105
|
+
</div>
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
<!-- if method_list -->
|
114
|
+
<div id="methods">
|
115
|
+
<h3 class="section-bar">Public Instance methods</h3>
|
116
|
+
|
117
|
+
<div id="method-M000004" class="method-detail">
|
118
|
+
<a name="M000004"></a>
|
119
|
+
|
120
|
+
<div class="method-heading">
|
121
|
+
<a href="#M000004" class="method-signature">
|
122
|
+
<span class="method-name">scenarios</span><span class="method-args">()</span>
|
123
|
+
</a>
|
124
|
+
</div>
|
125
|
+
|
126
|
+
<div class="method-description">
|
127
|
+
<p><a class="source-toggle" href="#"
|
128
|
+
onclick="toggleCode('M000004-source');return false;">[Source]</a></p>
|
129
|
+
<div class="method-source-code" id="M000004-source">
|
130
|
+
<pre>
|
131
|
+
<span class="ruby-comment cmt"># File lib/spectie/configuration.rb, line 5</span>
|
132
|
+
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">scenarios</span>
|
133
|
+
<span class="ruby-constant">ForScenarios</span>.<span class="ruby-identifier">new</span>
|
134
|
+
<span class="ruby-keyword kw">end</span>
|
135
|
+
</pre>
|
136
|
+
</div>
|
137
|
+
</div>
|
138
|
+
</div>
|
139
|
+
|
140
|
+
<div id="method-M000005" class="method-detail">
|
141
|
+
<a name="M000005"></a>
|
142
|
+
|
143
|
+
<div class="method-heading">
|
144
|
+
<a href="#M000005" class="method-signature">
|
145
|
+
<span class="method-name">selenium</span><span class="method-args">()</span>
|
146
|
+
</a>
|
147
|
+
</div>
|
148
|
+
|
149
|
+
<div class="method-description">
|
150
|
+
<p><a class="source-toggle" href="#"
|
151
|
+
onclick="toggleCode('M000005-source');return false;">[Source]</a></p>
|
152
|
+
<div class="method-source-code" id="M000005-source">
|
153
|
+
<pre>
|
154
|
+
<span class="ruby-comment cmt"># File lib/spectie/selenium/configuration.rb, line 22</span>
|
155
|
+
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">selenium</span>
|
156
|
+
<span class="ruby-ivar">@selenium</span> <span class="ruby-operator">||=</span> <span class="ruby-constant">Selenium</span>.<span class="ruby-identifier">new</span>
|
157
|
+
<span class="ruby-keyword kw">end</span>
|
158
|
+
</pre>
|
159
|
+
</div>
|
160
|
+
</div>
|
161
|
+
</div>
|
162
|
+
|
163
|
+
|
164
|
+
</div>
|
165
|
+
|
166
|
+
|
167
|
+
</div>
|
168
|
+
|
169
|
+
|
170
|
+
<div id="validator-badges">
|
171
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
172
|
+
</div>
|
173
|
+
|
174
|
+
</body>
|
175
|
+
</html>
|
@@ -0,0 +1,111 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>Class: Spectie::Configuration::ForScenarios</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="classHeader">
|
50
|
+
<table class="header-table">
|
51
|
+
<tr class="top-aligned-row">
|
52
|
+
<td><strong>Class</strong></td>
|
53
|
+
<td class="class-name-in-header">Spectie::Configuration::ForScenarios</td>
|
54
|
+
</tr>
|
55
|
+
<tr class="top-aligned-row">
|
56
|
+
<td><strong>In:</strong></td>
|
57
|
+
<td>
|
58
|
+
<a href="../../../files/lib/spectie/configuration_rb.html">
|
59
|
+
lib/spectie/configuration.rb
|
60
|
+
</a>
|
61
|
+
<br />
|
62
|
+
</td>
|
63
|
+
</tr>
|
64
|
+
|
65
|
+
<tr class="top-aligned-row">
|
66
|
+
<td><strong>Parent:</strong></td>
|
67
|
+
<td>
|
68
|
+
Object
|
69
|
+
</td>
|
70
|
+
</tr>
|
71
|
+
</table>
|
72
|
+
</div>
|
73
|
+
<!-- banner header -->
|
74
|
+
|
75
|
+
<div id="bodyContent">
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
<div id="contextContent">
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
</div>
|
84
|
+
|
85
|
+
|
86
|
+
</div>
|
87
|
+
|
88
|
+
|
89
|
+
<!-- if includes -->
|
90
|
+
|
91
|
+
<div id="section">
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
<!-- if method_list -->
|
101
|
+
|
102
|
+
|
103
|
+
</div>
|
104
|
+
|
105
|
+
|
106
|
+
<div id="validator-badges">
|
107
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
108
|
+
</div>
|
109
|
+
|
110
|
+
</body>
|
111
|
+
</html>
|