~mvo/snappy/15.04-ppp-config

« back to all changes in this revision

Viewing changes to progress/progress_test.go

  • Committer: John R. Lenton
  • Date: 2015-04-02 23:42:34 UTC
  • mto: (289.7.1 progress-status)
  • mto: This revision was merged to the branch mainline in revision 310.
  • Revision ID: jlenton@gmail.com-20150402234234-6ht2hh4ala60yrom
move progress to its own package

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *
16
16
 */
17
17
 
18
 
package snappy
 
18
package progress
19
19
 
20
20
import (
 
21
        "fmt"
21
22
        "io/ioutil"
22
23
        "os"
 
24
        "testing"
23
25
 
24
 
        "fmt"
25
26
        . "launchpad.net/gocheck"
26
27
)
27
28
 
 
29
// Hook up gocheck into the "go test" runner
 
30
func Test(t *testing.T) { TestingT(t) }
 
31
 
28
32
type ProgressTestSuite struct{}
29
33
 
30
34
var _ = Suite(&ProgressTestSuite{})