Add stubs for settings & automation tests

This commit is contained in:
Denis Arh
2019-09-10 20:23:39 +02:00
parent 7bc5b85dbf
commit 6e24b2d85b
5 changed files with 45 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package compose
import (
"testing"
)
func TestAutomationScript(t *testing.T) {
t.Skip("pending implementation")
}
+9
View File
@@ -0,0 +1,9 @@
package compose
import (
"testing"
)
func TestAutomationTrigger(t *testing.T) {
t.Skip("pending implementation")
}
+9
View File
@@ -0,0 +1,9 @@
package system
import (
"testing"
)
func TestAutomationScript(t *testing.T) {
t.Skip("pending implementation")
}
+9
View File
@@ -0,0 +1,9 @@
package system
import (
"testing"
)
func TestAutomationTrigger(t *testing.T) {
t.Skip("pending implementation")
}
+9
View File
@@ -0,0 +1,9 @@
package system
import (
"testing"
)
func TestSettings(t *testing.T) {
t.Skip("pending implementation")
}