~sinzui/ubuntu/vivid/juju-core/vivid-1.24.6

« back to all changes in this revision

Viewing changes to src/github.com/juju/juju/api/backups/package_test.go

  • Committer: Curtis Hovey
  • Date: 2015-09-30 14:14:54 UTC
  • mfrom: (1.1.34)
  • Revision ID: curtis@hovey.name-20150930141454-o3ldf23dzyjio6c0
Backport of 1.24.6 from wily. (LP: #1500916)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
package backups_test
5
5
 
6
6
import (
 
7
        "runtime"
7
8
        "testing"
8
9
        "time"
9
10
 
20
21
)
21
22
 
22
23
func TestAll(t *testing.T) {
 
24
        // TODO(bogdanteleaga): Fix these tests on windows
 
25
        if runtime.GOOS == "windows" {
 
26
                t.Skip("bug 1403084: Skipping this on windows for now")
 
27
        }
23
28
        coretesting.MgoTestPackage(t)
24
29
}
25
30