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

Test​Chooser

by CraigWilliams ST2

Sublime Text 2 Plugin for easily running RSpec and Cucumber tests in iTerm

Details

  • 2017.03.25.12.57.47
  • github.​com
  • github.​com
  • 7 years ago
  • 14 minutes ago
  • 12 years ago

Installs

  • Total 393
  • Win 53
  • Mac 258
  • Linux 82
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 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
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 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
Linux 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

Readme

Source
raw.​githubusercontent.​com

TestChooser

A Sublime Text 2 plugin for quickly executing a RSpec & Cucumber commands in iTerm or Apple's Terminal.

Description

It first checks the current file to see that it is either a “feature” or “spec” file. If so, it reads the file looking for “it”, “describe”, “context” or “scenario” keywords that are at the beginning of a line.

It then displays those lines for you to choose from. Once you select an item from the list and click “Run”, the test is executed in iTerm or Apple's Terminal, whichever you have set in preferences. The default is iTerm.

Instructions

This Plugin

Install this plugin using Package Control, a package manager for Sublime Text 2.

Key Bindings

There is a menu item to access the key binding for TestChooser.

“Preferences”->“Package Settings”->“TestChooser”->“Key Bindings - User”

This one uses a two-key combination. The “super” is the “command” key on a Mac.

{ "keys": ["super+y", "super+y"], "command": "test_chooser" }

Settings

“Preferences”->“Package Settings”->“TestChooser”->“Settings - User”

Choose your terminal. The default is iTerm but you can also choose Apple's Terminal by using the word “Terminal”

"terminal": "iTerm"

The search terms used when searching the RSpec and Cucumber files.

"search_terms": ["it", "describe", "context", "Scenario"]

Set the RSpec terminal command.

"rspec_command": "bundle exec rspec --drb"

Set the Cucumber terminal command.

"cucumber_command": "bundle exec cucumber --drb -r features/"

License

Read the license text file included in this package… but it's MIT.

Changelog

Changed the original plugin to now use Package Conrol

Removed py-appscript dependency.