Skip to content

Commit

Permalink
Pending tests for Robot
Browse files Browse the repository at this point in the history
  • Loading branch information
deadprogram committed Dec 2, 2013
1 parent 7f106c0 commit d76fe47
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 28 deletions.
28 changes: 0 additions & 28 deletions gobot_test.go

This file was deleted.

46 changes: 46 additions & 0 deletions robot_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package gobot

import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)

var _ = Describe("Robot", func() {

var (
someRobot Robot
)

BeforeEach(func() {
someRobot = Robot{
Work: func() {
},
}
})

Describe("Robot", func() {
Context("when valid", func() {
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)
})
})
})
})

0 comments on commit d76fe47

Please sign in to comment.