~themue/juju-core/go-worker-firewaller-machineunits

« back to all changes in this revision

Viewing changes to environs/ec2/image_test.go

  • Committer: Aram Hăvărneanu
  • Date: 2012-07-11 00:02:54 UTC
  • mfrom: (294 juju-core)
  • mto: This revision was merged to the branch mainline in revision 295.
  • Revision ID: aram@canonical.com-20120711000254-735x50597hck1rl2
juju: merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
        err        string
31
31
}{
32
32
        {instanceConstraint{
33
 
                series:            "natty",
34
 
                arch:              "amd64",
35
 
                persistentStorage: false,
36
 
                region:            "eu-west-1",
37
 
                daily:             true,
38
 
                desktop:           true,
39
 
        }, "ami-b1dde7c5", ""},
40
 
        {instanceConstraint{
41
 
                series:            "natty",
42
 
                arch:              "i386",
43
 
                persistentStorage: true,
44
 
                region:            "ap-northeast-1",
45
 
                daily:             true,
46
 
                desktop:           true,
47
 
        }, "ami-fc2a9afd", ""},
48
 
        {instanceConstraint{
49
 
                series:            "natty",
50
 
                arch:              "i386",
51
 
                persistentStorage: false,
52
 
                region:            "ap-northeast-1",
53
 
                daily:             true,
54
 
                desktop:           true,
55
 
        }, "ami-6c2a9a6d", ""},
56
 
        {instanceConstraint{
57
 
                series:            "natty",
58
 
                arch:              "amd64",
59
 
                persistentStorage: false,
60
 
                region:            "ap-northeast-1",
61
 
                daily:             true,
62
 
                desktop:           true,
63
 
        }, "ami-a02a9aa1", ""},
64
 
        {instanceConstraint{
65
 
                series:            "zingy",
66
 
                arch:              "amd64",
67
 
                persistentStorage: false,
68
 
                region:            "eu-west-1",
69
 
                daily:             true,
70
 
                desktop:           true,
 
33
                series: "natty",
 
34
                arch:   "amd64",
 
35
                region: "eu-west-1",
 
36
        }, "ami-69b28a1d", ""},
 
37
        {instanceConstraint{
 
38
                series: "natty",
 
39
                arch:   "i386",
 
40
                region: "ap-northeast-1",
 
41
        }, "ami-843b8a85", ""},
 
42
        {instanceConstraint{
 
43
                series: "natty",
 
44
                arch:   "amd64",
 
45
                region: "ap-northeast-1",
 
46
        }, "ami-8c3b8a8d", ""},
 
47
        {instanceConstraint{
 
48
                series: "zingy",
 
49
                arch:   "amd64",
 
50
                region: "eu-west-1",
71
51
        }, "", "error getting instance types:.*"},
72
52
}
73
53