ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

Behat 段落

ikwattro 全部

Sublime Text 2 用于 Behat 和 Mink 的片段 - 快速编写真正的 BDD

标签 片段

详细信息

  • 2014.02.07.19.43.06
  • github.​com
  • github.​com
  • 11年前
  • 54分钟前
  • 12年前

安装

  • 总数 5K
  • Win 2K
  • Mac 2K
  • Linux 1K
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日
Windows 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
Mac 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 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
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

源代码
raw.​githubusercontent.​com

Sublime Behat Snippets

加速您的 bdd 编写!

注意:对于 Mink 片段,请使用 Mink 文件夹。

安装

将存储库克隆到您个人 SublimeText2/Packages 文件夹中。

基本用法

只需键入触发名称,然后按制表符键即可轻松访问片段。

然后填写所需值的占位符

可用的片段(触发名称)

Behat

feature

Feature: (Your feature)
    In order to (to what?)
    As a (as a what?)
    I need (what da ya need?)

scenario

Scenario: (Scenario Description)
    Given I (Given?)
    And (And?)
    When I (when?)
    Then I (then?)

iHave

/**
* @Given /I have a (What da ya hav?) "([^"]*)"/
*/
public function iHaveA(What da ya hav?)($name)
{
    //(Your code here...)
}

iShould

/**
* @Then /I should (What should ya do?) "([^"]*)" in category "([^"]*)"/
*/
public function iShould(CamelShould)(Arguments)
{
    //Your code here
}
快速片段

giha => Given I have a aiha => And I have a

Mink

minkSession

$session = new \Behat\Mink\Session($driver);
$session->start();

minkContent

$content = $session->getPage()->getContent();

待办事项

  • 为 Behat 添加更多片段
  • 添加 Mink 片段

请随意改进此软件包