aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/test/fixtures
diff options
context:
space:
mode:
Diffstat (limited to 'actionwebservice/test/fixtures')
-rw-r--r--actionwebservice/test/fixtures/db_definitions/mysql.sql8
-rw-r--r--actionwebservice/test/fixtures/users.yml12
2 files changed, 0 insertions, 20 deletions
diff --git a/actionwebservice/test/fixtures/db_definitions/mysql.sql b/actionwebservice/test/fixtures/db_definitions/mysql.sql
deleted file mode 100644
index 8e01eef453..0000000000
--- a/actionwebservice/test/fixtures/db_definitions/mysql.sql
+++ /dev/null
@@ -1,8 +0,0 @@
-CREATE TABLE `users` (
- `id` int(11) NOT NULL auto_increment,
- `name` varchar(30) default NULL,
- `active` tinyint(4) default NULL,
- `balance` decimal(5, 2) default NULL,
- `created_on` date default NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
diff --git a/actionwebservice/test/fixtures/users.yml b/actionwebservice/test/fixtures/users.yml
deleted file mode 100644
index 926d6015f5..0000000000
--- a/actionwebservice/test/fixtures/users.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-user1:
- id: 1
- name: Kent
- active: 1
- balance: 12.2
- created_on: <%= Date.today %>
-user2:
- id: 2
- name: David
- active: 1
- balance: 16.4
- created_on: <%= Date.today %>