github.com/makyo/juju@v0.0.0-20160425123129-2608902037e9/apiserver/debuglog_db_test.go (about)

     1  // Copyright 2015 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package apiserver_test
     5  
     6  import gc "gopkg.in/check.v1"
     7  
     8  // debugLogDBSuite runs the common debuglog API tests when the db-log
     9  // feature flag is enabled. These tests are inherited from
    10  // debugLogBaseSuite.
    11  type debugLogDBSuite struct {
    12  	debugLogBaseSuite
    13  }
    14  
    15  var _ = gc.Suite(&debugLogDBSuite{})
    16  
    17  // See debuglog_db_internal_test.go for DB specific unit tests and the
    18  // featuretests package for an end-to-end integration test.