From 8eb546134cb5fc121b136d961c962879fb6715e3 Mon Sep 17 00:00:00 2001 From: Luis Majano Date: Wed, 16 Jun 2021 10:37:48 -0500 Subject: [PATCH] adding more tests to test xml output formatting --- tests/specs/BDDTest.cfc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/specs/BDDTest.cfc b/tests/specs/BDDTest.cfc index 4664a20..0b3fc22 100644 --- a/tests/specs/BDDTest.cfc +++ b/tests/specs/BDDTest.cfc @@ -44,6 +44,11 @@ component extends="testbox.system.BaseSpec" { foo = 0; } ); + describe( "A nice /suite/with/slashes", function(){ + it( "can have slashes/inthe/it", function(){ + expect( true ).toBeTrue(); + }); + }); it( "can match strings with no case sensitivity", function(){ expect( "Luis" ).toMatch( "^luis" );