From 3186bd9d396e747d23115d3f6693040d1512ae82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Guti=C3=A9rrez=20Torre?= Date: Sat, 4 Nov 2023 21:10:01 +0100 Subject: [PATCH] chores: Removed unneded test --- test/features/bugs.feature | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/test/features/bugs.feature b/test/features/bugs.feature index 99c4f3c..0bc194b 100644 --- a/test/features/bugs.feature +++ b/test/features/bugs.feature @@ -91,31 +91,6 @@ Feature: Fixing issues Then file outfile.com exists And file outfile.sym exists - @wip - Scenario: Issue #58 INCLUDE inside an IF is not ignored - Given I write the code to test.asm - """ - USE_SCREEN = 2 - - IF USE_SCREEN == 2 - .INCLUDE "screen2.com" - ENDIF - - IF USE_SCREEN == 4 - .INCLUDE "screen4.com" - ENDIF - """ - And I write to screen2.com - """ - .db "SCREEN2" - """ - And I write to screen4.com - """ - .db "SCREEN4" - """ - When I build test.asm - Then build output should not contain Including file screen4.com - Scenario: Issue #106 Include a file without newline breaks Given I write the code to test.asm """