|
6 | 6 |
|
7 | 7 | ```cfm |
8 | 8 | // tests/specs/views/UserViewSpec.cfc |
9 | | -component extends="wheels.Testbox" { |
| 9 | +component extends="wheels.WheelsTest" { |
10 | 10 |
|
11 | 11 | function run() { |
12 | 12 | describe("User View Components", () => { |
@@ -39,7 +39,7 @@ component extends="wheels.Testbox" { |
39 | 39 | ### Testing Partials with BDD |
40 | 40 |
|
41 | 41 | ```cfm |
42 | | -component extends="wheels.Testbox" { |
| 42 | +component extends="wheels.WheelsTest" { |
43 | 43 |
|
44 | 44 | function run() { |
45 | 45 | describe("User Card Partial", () => { |
@@ -107,7 +107,7 @@ component extends="wheels.Testbox" { |
107 | 107 | ### Testing Form Helpers with BDD |
108 | 108 |
|
109 | 109 | ```cfm |
110 | | -component extends="wheels.Testbox" { |
| 110 | +component extends="wheels.WheelsTest" { |
111 | 111 |
|
112 | 112 | function run() { |
113 | 113 | describe("Form Helper Testing", () => { |
@@ -160,7 +160,7 @@ component extends="wheels.Testbox" { |
160 | 160 | ### Testing View Helpers with BDD |
161 | 161 |
|
162 | 162 | ```cfm |
163 | | -component extends="wheels.Testbox" { |
| 163 | +component extends="wheels.WheelsTest" { |
164 | 164 |
|
165 | 165 | function run() { |
166 | 166 | describe("View Helper Functions", () => { |
@@ -209,7 +209,7 @@ component extends="wheels.Testbox" { |
209 | 209 | ### Integration Testing with Controllers using BDD |
210 | 210 |
|
211 | 211 | ```cfm |
212 | | -component extends="wheels.Testbox" { |
| 212 | +component extends="wheels.WheelsTest" { |
213 | 213 |
|
214 | 214 | function run() { |
215 | 215 | describe("View Integration Testing", () => { |
@@ -261,7 +261,7 @@ component extends="wheels.Testbox" { |
261 | 261 | ### Testing AJAX Responses with BDD |
262 | 262 |
|
263 | 263 | ```cfm |
264 | | -component extends="wheels.Testbox" { |
| 264 | +component extends="wheels.WheelsTest" { |
265 | 265 |
|
266 | 266 | function run() { |
267 | 267 | describe("AJAX Response Testing", () => { |
@@ -306,7 +306,7 @@ component extends="wheels.Testbox" { |
306 | 306 | ### Testing Flash Messages with BDD |
307 | 307 |
|
308 | 308 | ```cfm |
309 | | -component extends="wheels.Testbox" { |
| 309 | +component extends="wheels.WheelsTest" { |
310 | 310 |
|
311 | 311 | function run() { |
312 | 312 | describe("Flash Message Display", () => { |
@@ -485,7 +485,7 @@ curl -s http://localhost:8080 | grep '#urlFor' # Should return empty ( |
485 | 485 | ### Integration Testing Pattern |
486 | 486 |
|
487 | 487 | ```cfm |
488 | | -component extends="wheels.Testbox" { |
| 488 | +component extends="wheels.WheelsTest" { |
489 | 489 | function run() { |
490 | 490 | describe("Content Verification Tests", () => { |
491 | 491 |
|
|
0 commit comments