~wallyworld/juju-core/fast-lxc-everywhere

« back to all changes in this revision

Viewing changes to formula/export_test.go

  • Committer: Gustavo Niemeyer
  • Date: 2011-09-05 20:35:00 UTC
  • mfrom: (2.1.4 go-formulas)
  • Revision ID: gustavo@niemeyer.net-20110905203500-20rf3w8b16m4zrfl
Merged go-iface-schemas branch [r=fwereade,hazmat]

This kicks off the formula schema support in the Go port.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package formula
 
2
 
 
3
import (
 
4
        "launchpad.net/ensemble/go/schema"
 
5
)
 
6
 
 
7
// Export meaningful bits for tests only.
 
8
 
 
9
func IfaceExpander(limit interface{}) schema.Checker {
 
10
        return ifaceExpander(limit)
 
11
}