From 6e24b2d85b56c248b0a134016680050a4487ed84 Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Tue, 10 Sep 2019 20:23:39 +0200 Subject: [PATCH] Add stubs for settings & automation tests --- tests/compose/automation_script_test.go | 9 +++++++++ tests/compose/automation_trigger_test.go | 9 +++++++++ tests/system/automation_script_test.go | 9 +++++++++ tests/system/automation_trigger_test.go | 9 +++++++++ tests/system/settings_test.go | 9 +++++++++ 5 files changed, 45 insertions(+) create mode 100644 tests/compose/automation_script_test.go create mode 100644 tests/compose/automation_trigger_test.go create mode 100644 tests/system/automation_script_test.go create mode 100644 tests/system/automation_trigger_test.go create mode 100644 tests/system/settings_test.go diff --git a/tests/compose/automation_script_test.go b/tests/compose/automation_script_test.go new file mode 100644 index 000000000..603fe8d54 --- /dev/null +++ b/tests/compose/automation_script_test.go @@ -0,0 +1,9 @@ +package compose + +import ( + "testing" +) + +func TestAutomationScript(t *testing.T) { + t.Skip("pending implementation") +} diff --git a/tests/compose/automation_trigger_test.go b/tests/compose/automation_trigger_test.go new file mode 100644 index 000000000..1d9511143 --- /dev/null +++ b/tests/compose/automation_trigger_test.go @@ -0,0 +1,9 @@ +package compose + +import ( + "testing" +) + +func TestAutomationTrigger(t *testing.T) { + t.Skip("pending implementation") +} diff --git a/tests/system/automation_script_test.go b/tests/system/automation_script_test.go new file mode 100644 index 000000000..8b3ead789 --- /dev/null +++ b/tests/system/automation_script_test.go @@ -0,0 +1,9 @@ +package system + +import ( + "testing" +) + +func TestAutomationScript(t *testing.T) { + t.Skip("pending implementation") +} diff --git a/tests/system/automation_trigger_test.go b/tests/system/automation_trigger_test.go new file mode 100644 index 000000000..9a89a5a24 --- /dev/null +++ b/tests/system/automation_trigger_test.go @@ -0,0 +1,9 @@ +package system + +import ( + "testing" +) + +func TestAutomationTrigger(t *testing.T) { + t.Skip("pending implementation") +} diff --git a/tests/system/settings_test.go b/tests/system/settings_test.go new file mode 100644 index 000000000..70decbbf9 --- /dev/null +++ b/tests/system/settings_test.go @@ -0,0 +1,9 @@ +package system + +import ( + "testing" +) + +func TestSettings(t *testing.T) { + t.Skip("pending implementation") +}