github.com/hoffie/larasync@v0.0.0-20151025221940-0384d2bddcef/helpers/lock/lock_test.go (about)

     1  package lock
     2  
     3  import (
     4  	. "gopkg.in/check.v1"
     5  )
     6  
     7  type LockTests struct {
     8  }
     9  
    10  var _ = Suite(&LockTests{})
    11  
    12  func (t *LockTests) TestManagerReturn(c *C) {
    13  	c.Assert(CurrentManager(), NotNil)
    14  }