ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Go​Tests

by cweill ALL

A Sublime Text 3 plugin for generating better Go tests.

Labels go, testing

Details

Installs

  • Total 3K
  • Win 1K
  • Mac 1K
  • Linux 579
Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 29 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 1 0 0 1 0 0
Linux 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

GoTests-Sublime License

GoTests-Sublime makes writing better Go tests easy. It is an IDE plugin for Sublime Text 3 that uses gotests to generate table driven tests from selected function and method signatures. Any new dependencies in the test files are automatically imported.

Demo

demo

Installation

Prequisite: Use go get to install and update the gotests tool:

$ go get -u github.com/cweill/gotests/...

Next, install the GoTests-Sublime plugin:

With Package Control:

  1. Run the Package Control: Install Package command
  2. Find and install GoTests
  3. Restart Sublime Text (if required)

Manually:

  1. Clone this repo into your Packages folder
  2. Restart Sublime Text (if required)

Finally, open Preferences > Package Settings > GoTests > Settings - User. In the newly created file, set your $GOPATH:

// GoTests.sublime-settings
{
    // Add your GOPATH here.
    "GOPATH": "/absolute/go/path/",
}

Usage

Select some functions, right-click, and select Generate Go tests. This appends missing tests to an existing test file, or creates a new test file with them.

License

GoTests-Sublime is released under the Apache 2.0 License.