qunit_for_rails 0.0.4

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.
Files changed (73) hide show
  1. data/.gitignore +5 -0
  2. data/Gemfile +7 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.mdown +103 -0
  5. data/Rakefile +31 -0
  6. data/app/controllers/qunit_for_rails/qunit_tests_controller.rb +19 -0
  7. data/app/views/layouts/qunit_for_rails/main.haml +15 -0
  8. data/app/views/qunit_for_rails/qunit_tests/index.html.haml +15 -0
  9. data/config/routes.rb +3 -0
  10. data/lib/qunit_for_rails.rb +15 -0
  11. data/lib/qunit_for_rails/engine.rb +20 -0
  12. data/lib/qunit_for_rails/version.rb +3 -0
  13. data/lib/tasks/qunit_for_rails_tasks.rake +4 -0
  14. data/public/images/bg_diagonalDarkBlue.gif +0 -0
  15. data/public/images/bg_secondaryNav_left.gif +0 -0
  16. data/public/images/bg_secondaryNav_right.gif +0 -0
  17. data/public/images/i_loading_bar.gif +0 -0
  18. data/public/images/l_qunit.png +0 -0
  19. data/public/javascripts/qunit_for_rails/index.js +0 -0
  20. data/public/javascripts/qunit_for_rails/inject.js +191 -0
  21. data/public/javascripts/qunit_for_rails/jquery-1.6.4.min.js +4 -0
  22. data/public/javascripts/qunit_for_rails/qunit.js +1585 -0
  23. data/public/javascripts/qunit_for_rails/qunit.page_load.js +47 -0
  24. data/public/javascripts/qunit_for_rails/qunit.test_loader.js +98 -0
  25. data/public/javascripts/qunit_for_rails/qunit.test_page.js +55 -0
  26. data/public/javascripts/qunit_for_rails/qunit_for_rails.js +159 -0
  27. data/public/javascripts/tests/test.js +13 -0
  28. data/public/stylesheets/qunit.css +228 -0
  29. data/public/stylesheets/qunit_for_rails.css +255 -0
  30. data/qunit_for_rails.gemspec +29 -0
  31. data/test/dummy/Rakefile +7 -0
  32. data/test/dummy/app/controllers/application_controller.rb +3 -0
  33. data/test/dummy/app/helpers/application_helper.rb +2 -0
  34. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/test/dummy/config.ru +4 -0
  36. data/test/dummy/config/application.rb +43 -0
  37. data/test/dummy/config/boot.rb +10 -0
  38. data/test/dummy/config/database.yml +22 -0
  39. data/test/dummy/config/environment.rb +5 -0
  40. data/test/dummy/config/environments/development.rb +26 -0
  41. data/test/dummy/config/environments/production.rb +49 -0
  42. data/test/dummy/config/environments/test.rb +35 -0
  43. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  44. data/test/dummy/config/initializers/inflections.rb +10 -0
  45. data/test/dummy/config/initializers/mime_types.rb +5 -0
  46. data/test/dummy/config/initializers/secret_token.rb +7 -0
  47. data/test/dummy/config/initializers/session_store.rb +8 -0
  48. data/test/dummy/config/locales/en.yml +5 -0
  49. data/test/dummy/config/routes.rb +58 -0
  50. data/test/dummy/db/development.sqlite3 +0 -0
  51. data/test/dummy/log/development.log +4297 -0
  52. data/test/dummy/log/production.log +0 -0
  53. data/test/dummy/log/server.log +0 -0
  54. data/test/dummy/log/test.log +0 -0
  55. data/test/dummy/public/404.html +26 -0
  56. data/test/dummy/public/422.html +26 -0
  57. data/test/dummy/public/500.html +26 -0
  58. data/test/dummy/public/favicon.ico +0 -0
  59. data/test/dummy/public/javascripts/application.js +2 -0
  60. data/test/dummy/public/javascripts/controls.js +965 -0
  61. data/test/dummy/public/javascripts/dragdrop.js +974 -0
  62. data/test/dummy/public/javascripts/effects.js +1123 -0
  63. data/test/dummy/public/javascripts/prototype.js +6001 -0
  64. data/test/dummy/public/javascripts/rails.js +191 -0
  65. data/test/dummy/public/javascripts/test/example2_test.js +23 -0
  66. data/test/dummy/public/javascripts/test/example_test.js +23 -0
  67. data/test/dummy/public/stylesheets/.gitkeep +0 -0
  68. data/test/dummy/script/rails +6 -0
  69. data/test/integration/navigation_test.rb +7 -0
  70. data/test/qunit_for_rails_test.rb +33 -0
  71. data/test/support/integration_case.rb +5 -0
  72. data/test/test_helper.rb +3 -0
  73. metadata +224 -0
@@ -0,0 +1,255 @@
1
+ html, body {
2
+ margin: 0;
3
+ background: #FFF;
4
+ height: 100%;
5
+ }
6
+
7
+ iframe {
8
+ border: none;
9
+ height: 700px;
10
+ }
11
+
12
+ .testFrameContainer {
13
+ border-bottom: 1px solid #000;
14
+ overflow: auto;
15
+ }
16
+
17
+ .testFrameHeader {
18
+ height: 30px;
19
+ background-color: #D2E0E6;
20
+ color: #528CE0;
21
+ border-top: 2px solid #CCC;
22
+ border-bottom: 2px solid #CCC;
23
+ cursor: pointer;
24
+ }
25
+
26
+ .testFrameHeader h2 {
27
+ font-size: 0.75em;
28
+ margin: 0;
29
+ margin-left: 10px;
30
+ padding-top: 7px;
31
+ float: left;
32
+ }
33
+
34
+ .pass {
35
+ background-color: #C6E746;
36
+ border-top: 2px solid #718526;
37
+ border-bottom: 2px solid #718526;
38
+ color: #333;
39
+ }
40
+ .fail {
41
+ color: #FFF;
42
+ background-color: #EE5757;
43
+ border-top: 2px solid #913434;
44
+ border-bottom: 2px solid #913434;
45
+ }
46
+
47
+ h1#qunit-header
48
+ {
49
+ padding: 5px;
50
+ padding-left: 30px;
51
+ font-size: large;
52
+ background-color: #0f1924;
53
+ color: yellow;
54
+ font-family: 'trebuchet ms', verdana, arial;
55
+ margin: 0;
56
+ border-radius: 0;
57
+ }
58
+
59
+ h1#qunit-header a
60
+ {
61
+ color: white;
62
+ }
63
+
64
+ h2#qunit-banner
65
+ {
66
+ height: 8px;
67
+ border-bottom: 1px solid white;
68
+ background-color: #eee;
69
+ margin: 0;
70
+ font-family: 'trebuchet ms', verdana, arial;
71
+ }
72
+
73
+ h2#qunit-banner.pass
74
+ {
75
+ background-color: green;
76
+ }
77
+
78
+ h2#qunit-banner.fail
79
+ {
80
+ background-color: red;
81
+ }
82
+
83
+ h2#qunit-userAgent
84
+ {
85
+ padding: 10px;
86
+ padding-left: 30px;
87
+ background-color: #eee;
88
+ color: black;
89
+ margin: 0;
90
+ font-size: small;
91
+ font-weight: normal;
92
+ font-family: 'trebuchet ms', verdana, arial;
93
+ font-size: 10pt;
94
+ }
95
+
96
+ div#qunit-testrunner-toolbar
97
+ {
98
+ padding-left: 30px;
99
+ background: #eee;
100
+ border-top: 1px solid black;
101
+ padding: 10px;
102
+ font-family: 'trebuchet ms', verdana, arial;
103
+ margin: 0;
104
+ font-size: 10pt;
105
+ }
106
+
107
+ ol#qunit-tests
108
+ {
109
+ font-family: 'trebuchet ms', verdana, arial;
110
+ font-size: 10pt;
111
+ border-radius: 0;
112
+ }
113
+
114
+ ol#qunit-tests li strong
115
+ {
116
+ cursor:pointer;
117
+ }
118
+
119
+ ol#qunit-tests .pass
120
+ {
121
+ color: green;
122
+ }
123
+
124
+ ol#qunit-tests .fail
125
+ {
126
+ color: red;
127
+ }
128
+ #qunit-tests > li:last-child {
129
+ border-radius: 0;
130
+ }
131
+
132
+ p#qunit-testresult
133
+ {
134
+ padding-left: 30px;
135
+ font-size: 10pt;
136
+ font-family: 'trebuchet ms', verdana, arial;
137
+ }
138
+
139
+ ul.qunit
140
+ {
141
+ list-style: none;
142
+ height: 34px;
143
+ float: left;
144
+ margin: 0px;
145
+ padding: 0px 0px 0px 3px;
146
+ }
147
+
148
+ ul.qunit li
149
+ {
150
+ float: left;
151
+ height: 18px;
152
+ padding: 8px;
153
+ }
154
+
155
+ ul.qunit li a
156
+ {
157
+ position: relative;
158
+ top: 0px;
159
+ color: white;
160
+ text-decoration: none;
161
+ }
162
+
163
+ ul.qunit li.first
164
+ {
165
+ border-right: 1px solid rgb(13, 89, 149);
166
+ }
167
+
168
+ ul.qunit li.last
169
+ {
170
+ margin-top: 6px;
171
+ padding-top: 0px;
172
+ border-left: 1px solid rgb(17, 117, 174);
173
+ }
174
+
175
+ #qunit-overlay
176
+ {
177
+ position: relative;
178
+ top: 0px;
179
+ left: 0px;
180
+ width: 100%;
181
+ height: 46px;
182
+ color: white;
183
+ margin: 0px;
184
+ padding: 0px;
185
+ background-color: #0f1924;
186
+ font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
187
+ }
188
+
189
+ #qunit-test-options
190
+ {
191
+ float: left;
192
+ position: relative;
193
+ top: 5px;
194
+ left: 30px;
195
+ height: 34px;
196
+ }
197
+
198
+ #qunit-logo
199
+ {
200
+ position: absolute;
201
+ top: 6px;
202
+ right: 5px;
203
+ width: 265px;
204
+ height: 40px;
205
+ font-size: 10px;
206
+ color: #DEDEDE;
207
+ font-style: italic;
208
+ }
209
+
210
+ #qunit-menu
211
+ {
212
+ float: left;
213
+ width: 790px;
214
+ height: 30px;
215
+ padding: 2px;
216
+ margin-top: 6px;
217
+ margin-left: 40px;
218
+ font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
219
+ color: yellow;
220
+ }
221
+
222
+ ul.qunit-menu
223
+ {
224
+ list-style: none;
225
+ float: left;
226
+ margin: 0px;
227
+ padding: 0px 0px 0px 0px;
228
+ font-size: 11px;
229
+ margin-bottom: -22px;
230
+ }
231
+
232
+ ul.qunit-menu li
233
+ {
234
+ vertical-align: baseline;
235
+ padding: 6px;
236
+ float: left;
237
+ font-weight: normal;
238
+ }
239
+
240
+ #qunit-loading
241
+ {
242
+ padding-left: 30px;
243
+ }
244
+
245
+ #qunit-results
246
+ {
247
+ position: relative;
248
+ top: 30;
249
+ width: 100%;
250
+ height: 200px;
251
+ background-color: #eee;
252
+ color: #000;
253
+ padding: 0px;
254
+ overflow: hidden;
255
+ }
@@ -0,0 +1,29 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path("../lib/qunit_for_rails/version", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "qunit_for_rails"
6
+ s.version = QunitForRails::VERSION
7
+ s.authors = ["Michael Krisher", "Eric D Helms"]
8
+ s.email = ["ericdhelms@gmail.com"]
9
+ s.homepage = "https://github.com/ehelms/qunit_for_rails"
10
+ s.summary = ""
11
+ s.description = "Helper to integrate QUnit JavaScript testing into any Rails app"
12
+
13
+
14
+ s.rubyforge_project = "qunit_for_rails"
15
+
16
+ #s.add_dependency "activesupport", "~> 3.0.10"
17
+ s.add_dependency "rails", "3.0.10"
18
+ s.add_dependency "ruby-debug"
19
+ s.add_dependency 'haml', '>= 3.1.2'
20
+
21
+ s.files = `git ls-files`.split("\n")
22
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
23
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
24
+ s.require_paths = ["lib"]
25
+
26
+ # specify any dependencies here; for example:
27
+ # s.add_development_dependency "rspec"
28
+ # s.add_runtime_dependency "rest-client"
29
+ end
@@ -0,0 +1,7 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+ require 'rake'
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag :all %>
6
+ <%= javascript_include_tag :defaults %>
7
+ <%= csrf_meta_tag %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,43 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require "action_controller/railtie"
4
+ require "action_view/railtie"
5
+ require "action_mailer/railtie"
6
+
7
+ Bundler.require
8
+ require "qunit_for_rails"
9
+
10
+ module Dummy
11
+ class Application < Rails::Application
12
+ # Settings in config/environments/* take precedence over those specified here.
13
+ # Application configuration should go into files in config/initializers
14
+ # -- all .rb files in that directory are automatically loaded.
15
+
16
+ # Custom directories with classes and modules you want to be autoloadable.
17
+ # config.autoload_paths += %W(#{config.root}/extras)
18
+
19
+ # Only load the plugins named here, in the order given (default is alphabetical).
20
+ # :all can be used as a placeholder for all plugins not explicitly named.
21
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
22
+
23
+ # Activate observers that should always be running.
24
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
25
+
26
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
27
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
28
+ # config.time_zone = 'Central Time (US & Canada)'
29
+
30
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
31
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
32
+ # config.i18n.default_locale = :de
33
+
34
+ # JavaScript files you want as :defaults (application.js is always included).
35
+ # config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
36
+
37
+ # Configure the default encoding used in templates for Ruby 1.9.
38
+ config.encoding = "utf-8"
39
+
40
+ # Configure sensitive parameters which will be filtered from the log file.
41
+ config.filter_parameters += [:password]
42
+ end
43
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,22 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ development:
4
+ adapter: sqlite3
5
+ database: db/development.sqlite3
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ # Warning: The database defined as "test" will be erased and
10
+ # re-generated from your development database when you run "rake".
11
+ # Do not set this db to the same as development or production.
12
+ test:
13
+ adapter: sqlite3
14
+ database: db/test.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+
18
+ production:
19
+ adapter: sqlite3
20
+ database: db/production.sqlite3
21
+ pool: 5
22
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,26 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the webserver when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_view.debug_rjs = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Don't care if the mailer can't send
18
+ config.action_mailer.raise_delivery_errors = false
19
+
20
+ # Print deprecation notices to the Rails logger
21
+ config.active_support.deprecation = :log
22
+
23
+ # Only use best-standards-support built into browsers
24
+ config.action_dispatch.best_standards_support = :builtin
25
+ end
26
+
@@ -0,0 +1,49 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The production environment is meant for finished, "live" apps.
5
+ # Code is not reloaded between requests
6
+ config.cache_classes = true
7
+
8
+ # Full error reports are disabled and caching is turned on
9
+ config.consider_all_requests_local = false
10
+ config.action_controller.perform_caching = true
11
+
12
+ # Specifies the header that your server uses for sending files
13
+ config.action_dispatch.x_sendfile_header = "X-Sendfile"
14
+
15
+ # For nginx:
16
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
17
+
18
+ # If you have no front-end server that supports something like X-Sendfile,
19
+ # just comment this out and Rails will serve the files
20
+
21
+ # See everything in the log (default is :info)
22
+ # config.log_level = :debug
23
+
24
+ # Use a different logger for distributed setups
25
+ # config.logger = SyslogLogger.new
26
+
27
+ # Use a different cache store in production
28
+ # config.cache_store = :mem_cache_store
29
+
30
+ # Disable Rails's static asset server
31
+ # In production, Apache or nginx will already do this
32
+ config.serve_static_assets = false
33
+
34
+ # Enable serving of images, stylesheets, and javascripts from an asset server
35
+ # config.action_controller.asset_host = "http://assets.example.com"
36
+
37
+ # Disable delivery errors, bad email addresses will be ignored
38
+ # config.action_mailer.raise_delivery_errors = false
39
+
40
+ # Enable threaded mode
41
+ # config.threadsafe!
42
+
43
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
44
+ # the I18n.default_locale when a translation can not be found)
45
+ config.i18n.fallbacks = true
46
+
47
+ # Send deprecation notices to registered listeners
48
+ config.active_support.deprecation = :notify
49
+ end