diff options
| author | Chris Lu <chris.lu@gmail.com> | 2012-08-29 01:42:24 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2012-08-29 01:42:24 -0700 |
| commit | f5d981ab4d6de03965bcdd28042b78e425b2c3ee (patch) | |
| tree | 69c64cb64a11ed6c61309ff49ac66909d6249bee /weed-fs/src | |
| parent | 317e12644a81d71a174a97ffea24d2bdac8b4d74 (diff) | |
| download | seaweedfs-f5d981ab4d6de03965bcdd28042b78e425b2c3ee.tar.xz seaweedfs-f5d981ab4d6de03965bcdd28042b78e425b2c3ee.zip | |
scaffold for tests
Diffstat (limited to 'weed-fs/src')
| -rw-r--r-- | weed-fs/src/pkg/topology/topo_test.go | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/weed-fs/src/pkg/topology/topo_test.go b/weed-fs/src/pkg/topology/topo_test.go new file mode 100644 index 000000000..92426fb5a --- /dev/null +++ b/weed-fs/src/pkg/topology/topo_test.go @@ -0,0 +1,41 @@ +package topology + +import ( + "testing" +) + +func TestAddVolume(t *testing.T) { + +} + +func TestAddServer(t *testing.T) { + +} + +func TestAddRack(t *testing.T) { + +} + +func TestAddDataCenter(t *testing.T) { + +} + +func TestReserveVolume(t *testing.T) { + +} + +func TestRemoveVolume(t *testing.T) { + +} + +func TestRemoveServer(t *testing.T) { + +} + +func TestRemoveRack(t *testing.T) { + +} + +func TestRemoveDataCenter(t *testing.T) { + +} |
