// AddConfigCharm clones a testing charm, replaces its config with // the given YAML string and adds it to the state, using the given // revision. func (s *ConnSuite) AddConfigCharm(c *C, name, configYaml string, revision int) *state.Charm { return state.AddCustomCharm(c, s.State, name, "config.yaml", configYaml, "series", revision) }
// AddMetaCharm clones a testing charm, replaces its metadata with the // given YAML string and adds it to the state, using the given revision. func (s *ConnSuite) AddMetaCharm(c *C, name, metaYaml string, revsion int) *state.Charm { return state.AddCustomCharm(c, s.State, name, "metadata.yaml", metaYaml, "series", revsion) }
func (s *ConnSuite) AddSeriesCharm(c *C, name, series string) *state.Charm { return state.AddCustomCharm(c, s.State, name, "", "", series, -1) }