qlive-rails 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,2 @@
1
1
  /*
2
- *= require_tree ./suites
3
2
  */
@@ -1,5 +1,4 @@
1
1
  /*
2
- *= require_tree ./suites
3
2
  *= require_self
4
3
  */
5
4
 
data/lib/qlive/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Qlive
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -0,0 +1,231 @@
1
+ /**
2
+ * QUnit v1.9.0 - A JavaScript Unit Testing Framework
3
+ *
4
+ * http://docs.jquery.com/QUnit
5
+ *
6
+ * Copyright (c) 2012 John Resig, Jörn Zaefferer
7
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
8
+ * or GPL (GPL-LICENSE.txt) licenses.
9
+ */
10
+
11
+ /** Font Family and Sizes */
12
+
13
+ #qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
14
+ font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
15
+ }
16
+
17
+ #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
18
+ #qunit-tests { font-size: smaller; }
19
+
20
+
21
+ /** Resets */
22
+
23
+ #qunit-tests, #qunit-tests ol, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult {
24
+ margin: 0;
25
+ padding: 0;
26
+ }
27
+
28
+
29
+ /** Header */
30
+
31
+ #qunit-header {
32
+ padding: 0.5em 0 0.5em 1em;
33
+
34
+ color: #8699a4;
35
+ background-color: #0d3349;
36
+
37
+ font-size: 1.5em;
38
+ line-height: 1em;
39
+ font-weight: normal;
40
+
41
+ border-radius: 5px 5px 0 0;
42
+ -moz-border-radius: 5px 5px 0 0;
43
+ -webkit-border-top-right-radius: 5px;
44
+ -webkit-border-top-left-radius: 5px;
45
+ }
46
+
47
+ #qunit-header a {
48
+ text-decoration: none;
49
+ color: #c2ccd1;
50
+ }
51
+
52
+ #qunit-header a:hover,
53
+ #qunit-header a:focus {
54
+ color: #fff;
55
+ }
56
+
57
+ #qunit-testrunner-toolbar label {
58
+ display: inline-block;
59
+ padding: 0 .5em 0 .1em;
60
+ }
61
+
62
+ #qunit-banner {
63
+ height: 5px;
64
+ }
65
+
66
+ #qunit-testrunner-toolbar {
67
+ padding: 0.5em 0 0.5em 2em;
68
+ color: #5E740B;
69
+ background-color: #eee;
70
+ }
71
+
72
+ #qunit-userAgent {
73
+ padding: 0.5em 0 0.5em 2.5em;
74
+ background-color: #2b81af;
75
+ color: #fff;
76
+ text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
77
+ }
78
+
79
+
80
+ /** Tests: Pass/Fail */
81
+
82
+ #qunit-tests {
83
+ list-style-position: inside;
84
+ }
85
+
86
+ #qunit-tests li {
87
+ padding: 0.4em 0.5em 0.4em 2.5em;
88
+ border-bottom: 1px solid #fff;
89
+ list-style-position: inside;
90
+ }
91
+
92
+ #qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
93
+ display: none;
94
+ }
95
+
96
+ #qunit-tests li strong {
97
+ cursor: pointer;
98
+ }
99
+
100
+ #qunit-tests li a {
101
+ padding: 0.5em;
102
+ color: #c2ccd1;
103
+ text-decoration: none;
104
+ }
105
+ #qunit-tests li a:hover,
106
+ #qunit-tests li a:focus {
107
+ color: #000;
108
+ }
109
+
110
+ #qunit-tests ol {
111
+ margin-top: 0.5em;
112
+ padding: 0.5em;
113
+
114
+ background-color: #fff;
115
+
116
+ border-radius: 5px;
117
+ -moz-border-radius: 5px;
118
+ -webkit-border-radius: 5px;
119
+ }
120
+
121
+ #qunit-tests table {
122
+ border-collapse: collapse;
123
+ margin-top: .2em;
124
+ }
125
+
126
+ #qunit-tests th {
127
+ text-align: right;
128
+ vertical-align: top;
129
+ padding: 0 .5em 0 0;
130
+ }
131
+
132
+ #qunit-tests td {
133
+ vertical-align: top;
134
+ }
135
+
136
+ #qunit-tests pre {
137
+ margin: 0;
138
+ white-space: pre-wrap;
139
+ word-wrap: break-word;
140
+ }
141
+
142
+ #qunit-tests del {
143
+ background-color: #e0f2be;
144
+ color: #374e0c;
145
+ text-decoration: none;
146
+ }
147
+
148
+ #qunit-tests ins {
149
+ background-color: #ffcaca;
150
+ color: #500;
151
+ text-decoration: none;
152
+ }
153
+
154
+ /*** Test Counts */
155
+
156
+ #qunit-tests b.counts { color: black; }
157
+ #qunit-tests b.passed { color: #5E740B; }
158
+ #qunit-tests b.failed { color: #710909; }
159
+
160
+ #qunit-tests li li {
161
+ padding: 5px;
162
+ background-color: #fff;
163
+ border-bottom: none;
164
+ list-style-position: inside;
165
+ }
166
+
167
+ /*** Passing Styles */
168
+
169
+ #qunit-tests li li.pass {
170
+ color: #3c510c;
171
+ background-color: #fff;
172
+ border-left: 10px solid #C6E746;
173
+ }
174
+
175
+ #qunit-tests .pass { color: #528CE0; background-color: #D2E0E6; }
176
+ #qunit-tests .pass .test-name { color: #366097; }
177
+
178
+ #qunit-tests .pass .test-actual,
179
+ #qunit-tests .pass .test-expected { color: #999999; }
180
+
181
+ #qunit-banner.qunit-pass { background-color: #C6E746; }
182
+
183
+ /*** Failing Styles */
184
+
185
+ #qunit-tests li li.fail {
186
+ color: #710909;
187
+ background-color: #fff;
188
+ border-left: 10px solid #EE5757;
189
+ white-space: pre;
190
+ }
191
+
192
+ #qunit-tests > li:last-child {
193
+ border-radius: 0 0 5px 5px;
194
+ -moz-border-radius: 0 0 5px 5px;
195
+ -webkit-border-bottom-right-radius: 5px;
196
+ -webkit-border-bottom-left-radius: 5px;
197
+ }
198
+
199
+ #qunit-tests .fail { color: #000000; background-color: #EE5757; }
200
+ #qunit-tests .fail .test-name,
201
+ #qunit-tests .fail .module-name { color: #000000; }
202
+
203
+ #qunit-tests .fail .test-actual { color: #EE5757; }
204
+ #qunit-tests .fail .test-expected { color: green; }
205
+
206
+ #qunit-banner.qunit-fail { background-color: #EE5757; }
207
+
208
+
209
+ /** Result */
210
+
211
+ #qunit-testresult {
212
+ padding: 0.5em 0.5em 0.5em 2.5em;
213
+
214
+ color: #2b81af;
215
+ background-color: #D2E0E6;
216
+
217
+ border-bottom: 1px solid white;
218
+ }
219
+ #qunit-testresult .module-name {
220
+ font-weight: bold;
221
+ }
222
+
223
+ /** Fixture */
224
+
225
+ #qunit-fixture {
226
+ position: absolute;
227
+ top: -10000px;
228
+ left: -10000px;
229
+ width: 1000px;
230
+ height: 1000px;
231
+ }