mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-24 13:48:49 +08:00
Clean up files
This commit is contained in:
parent
2c9247dcc7
commit
8b6639485c
@ -95,7 +95,6 @@ func driver() string {
|
||||
return `package gobot{{ .Name }}
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/hybridgroup/gobot"
|
||||
)
|
||||
|
||||
|
@ -1,54 +1,54 @@
|
||||
package gobot
|
||||
|
||||
import (
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
var _ = Describe("Robot", func() {
|
||||
|
||||
var (
|
||||
someRobot Robot
|
||||
)
|
||||
var (
|
||||
someRobot Robot
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
someRobot = Robot{
|
||||
Work: func() {
|
||||
},
|
||||
}
|
||||
})
|
||||
BeforeEach(func() {
|
||||
someRobot = Robot{
|
||||
Work: func() {
|
||||
},
|
||||
}
|
||||
})
|
||||
|
||||
Context("when valid", func() {
|
||||
It("initName should not change name when already set", func() {
|
||||
someRobot.Name = "Bumblebee"
|
||||
someRobot.initName()
|
||||
Expect(someRobot.Name).To(Equal("Bumblebee"))
|
||||
})
|
||||
It("initName should set random name when not set", func() {
|
||||
someRobot.initName()
|
||||
Expect(someRobot.Name).NotTo(BeNil())
|
||||
Expect(someRobot.Name).NotTo(Equal("Bumblebee"))
|
||||
})
|
||||
PIt("should Start", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should initConnections", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should initDevices", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should startConnections", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should startDevices", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should GetDevices", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should GetDevice", func() {
|
||||
Expect(true)
|
||||
})
|
||||
})
|
||||
Context("when valid", func() {
|
||||
It("initName should not change name when already set", func() {
|
||||
someRobot.Name = "Bumblebee"
|
||||
someRobot.initName()
|
||||
Expect(someRobot.Name).To(Equal("Bumblebee"))
|
||||
})
|
||||
It("initName should set random name when not set", func() {
|
||||
someRobot.initName()
|
||||
Expect(someRobot.Name).NotTo(BeNil())
|
||||
Expect(someRobot.Name).NotTo(Equal("Bumblebee"))
|
||||
})
|
||||
PIt("should Start", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should initConnections", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should initDevices", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should startConnections", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should startDevices", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should GetDevices", func() {
|
||||
Expect(true)
|
||||
})
|
||||
PIt("should GetDevice", func() {
|
||||
Expect(true)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user