summaryrefslogtreecommitdiff
path: root/clutter/tests/conform/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'clutter/tests/conform/scripts')
-rw-r--r--clutter/tests/conform/scripts/test-animator-1.json5
-rw-r--r--clutter/tests/conform/scripts/test-animator-2.json29
-rw-r--r--clutter/tests/conform/scripts/test-animator-3.json40
-rw-r--r--clutter/tests/conform/scripts/test-state-1.json33
4 files changed, 0 insertions, 107 deletions
diff --git a/clutter/tests/conform/scripts/test-animator-1.json b/clutter/tests/conform/scripts/test-animator-1.json
deleted file mode 100644
index 2d6aab908..000000000
--- a/clutter/tests/conform/scripts/test-animator-1.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "type" : "ClutterAnimator",
- "id" : "animator",
- "duration" : 1000
-}
diff --git a/clutter/tests/conform/scripts/test-animator-2.json b/clutter/tests/conform/scripts/test-animator-2.json
deleted file mode 100644
index 9059f57ed..000000000
--- a/clutter/tests/conform/scripts/test-animator-2.json
+++ /dev/null
@@ -1,29 +0,0 @@
-[
- {
- "type" : "ClutterRectangle",
- "id" : "foo",
- "x" : 0,
- "y" : 0,
- "width" : 100,
- "height" : 100
- },
- {
- "type" : "ClutterAnimator",
- "id" : "animator",
- "duration" : 1000,
-
- "properties" : [
- {
- "object" : "foo",
- "name" : "x",
- "ease-in" : true,
- "interpolation" : "linear",
- "keys" : [
- [ 0.0, "easeInCubic", 100.0 ],
- [ 0.2, "easeOutCubic", 150.0 ],
- [ 0.8, "linear", 200.0 ]
- ]
- }
- ]
- }
-]
diff --git a/clutter/tests/conform/scripts/test-animator-3.json b/clutter/tests/conform/scripts/test-animator-3.json
deleted file mode 100644
index 26d779bee..000000000
--- a/clutter/tests/conform/scripts/test-animator-3.json
+++ /dev/null
@@ -1,40 +0,0 @@
-[
- {
- "type" : "ClutterRectangle",
- "id" : "foo",
- "x" : 0,
- "y" : 0,
- "width" : 100,
- "height" : 100
- },
- {
- "type" : "ClutterAnimator",
- "id" : "animator",
- "duration" : 1000,
-
- "properties" : [
- {
- "object" : "foo",
- "name" : "x",
- "ease-in" : true,
- "interpolation" : "linear",
- "keys" : [
- [ 0.0, "easeInCubic", 100.0 ],
- [ 0.2, "easeOutCubic", 150.0 ],
- [ 0.8, "linear", 200.0 ]
- ]
- },
- {
- "object" : "foo",
- "name" : "y",
- "ease-in" : true,
- "interpolation" : "linear",
- "keys" : [
- [ 0.0, "easeInCubic", 100.0 ],
- [ 0.2, "easeOutCubic", 150.0 ],
- [ 0.8, "linear", 200.0 ]
- ]
- }
- ]
- }
-]
diff --git a/clutter/tests/conform/scripts/test-state-1.json b/clutter/tests/conform/scripts/test-state-1.json
deleted file mode 100644
index 78ab5de89..000000000
--- a/clutter/tests/conform/scripts/test-state-1.json
+++ /dev/null
@@ -1,33 +0,0 @@
-[
- {
- "type" : "ClutterRectangle",
- "id" : "rect",
- "width" : 100,
- "height" : 100
- },
- {
- "type" : "ClutterState",
- "id" : "state",
-
- "transitions" : [
- {
- "source" : "base",
- "target" : "clicked",
- "duration" : 250,
-
- "keys" : [
- [ "rect", "opacity", "linear", 128 ]
- ]
- },
- {
- "source" : "clicked",
- "target" : "base",
- "duration" : 150,
-
- "keys" : [
- [ "rect", "opacity", "linear", 255 ]
- ]
- }
- ]
- }
-]