~rogpeppe/juju-core/axwalk-lp1300889-disable-mongo-keyfile

« back to all changes in this revision

Viewing changes to cmd/plugins/juju-metadata/metadataplugin_test.go

  • Committer: Ian Booth
  • Date: 2013-08-13 04:55:12 UTC
  • mto: (1603.8.2 simplify-tools-search)
  • mto: This revision was merged to the branch mainline in revision 1680.
  • Revision ID: ian.booth@canonical.com-20130813045512-e68m4emfaoyn01h9
Add support for parsing and validating tools metadata

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        "generate-image",
33
33
        "help",
34
34
        "validate-images",
 
35
        "validate-tools",
35
36
}
36
37
 
37
38
func (s *MetadataSuite) SetUpTest(c *gc.C) {
95
96
        s.assertHelpOutput(c, "validate-images")
96
97
}
97
98
 
 
99
func (s *MetadataSuite) TestHelpValidateTools(c *gc.C) {
 
100
        s.assertHelpOutput(c, "validate-tools")
 
101
}
 
102
 
98
103
func (s *MetadataSuite) TestHelpGenerateImage(c *gc.C) {
99
104
        s.assertHelpOutput(c, "generate-image")
100
105
}