From 43233000543984eda49768edde65076fb9c2468c Mon Sep 17 00:00:00 2001 From: ctrlaltca <> Date: Sun, 18 Nov 2012 20:26:25 +0000 Subject: dropped old tests referring to unexisting components (NOTE: this includes what seems a test suite for an older version of SQLMap) --- tests/unit/SQLMap/scripts/mssql/category-init.sql | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 tests/unit/SQLMap/scripts/mssql/category-init.sql (limited to 'tests/unit/SQLMap/scripts/mssql/category-init.sql') diff --git a/tests/unit/SQLMap/scripts/mssql/category-init.sql b/tests/unit/SQLMap/scripts/mssql/category-init.sql deleted file mode 100644 index c0d20603..00000000 --- a/tests/unit/SQLMap/scripts/mssql/category-init.sql +++ /dev/null @@ -1,17 +0,0 @@ --- Creating Table - -use [IBatisNet] - -if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Categories]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -drop table [dbo].[Categories] - -CREATE TABLE [dbo].[Categories] ( - [Category_Id] [int] IDENTITY (1, 1) NOT NULL , - [Category_Name] [varchar] (32) NULL, - [Category_Guid] [uniqueidentifier] NULL -) ON [PRIMARY] - --- Store procedure - -if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[ps_InsertCategorie]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) -drop procedure [dbo].[ps_InsertCategorie] -- cgit v1.2.3