Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A node.js cucumber implementation with a few extra asynchronous keywords. supports 160+ languages and exports to VowsJS stubs

NotificationsYou must be signed in to change notification settings

vowsjs/kyuri

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kyuri is anode.jsCucumber implementation with a few extra asynchronous keywords. it supports 160+ languages and exports toVowsJS stubs

Example

A feature in kyuri might look like this...

Feature: Addition  In order to avoid silly mistakes  As a math idiot  I want to be told the sum of two numbers  Scenario: Add two numbers    Given I have entered 50 into the calculator    And I have entered 70 into the calculator    When I press add    Then the result should be 120 on the screen

Should output:

vows.describe('Addition').addBatch({  "Add two numbers": {  "GIVEN I have entered 50 into the calculator": {  topic: function () {    /* Setup your test conditions here */  },"AND I have entered 70 into the calculator": {  topic: function () {    /* Setup your test conditions here */  },"WHEN I press add": {  topic: function () {    /* Setup your test conditions here */  },"THEN the result should be 120 on the screen": function () {  /* Setup your test assertions here */},}}}  }}).export(module);

Compatibility

gherkin is almost fully supported by kyuri. kyuri can push and pull updates from the gherkin project, check outi18n.js andi18n-generator.rb

(we are CLOSE to gherkin compliance, we will be working on 100% in v0.2.0)

Installation

Installing npm (node package manager)

  curl http://npmjs.org/install.sh | sh

Installing kyuri

  npm install kyuri

###VowsJS

Vows is a popularBehavior Driven Development framework for node.js. Vows was built from the ground up to test asynchronous code. It executes your tests in parallel when it makes sense, and sequentially when there are dependencies.

Instead of crafting your VowsJS code from hand (using JavaScript), kyuri allows you to auto-generate Vows stubs.

###Protip:kyuri is meant to be a low-level tool. if you want to compose Features and Scenarios using kyuri and a rich user-interface check out our other Node Knockout Entry,prenup.

Authors

created byCharlie Robbins for Node Knockout 2010

big ups toJeremy Ashkenas for being a languages black-belt and makingcoffee-script

gherkin is Copyright (c) 2009-2010 Mike Sassak, Gregory Hnatiuk, Aslak Hellesøy, seeGHERKIN.LIC for more details.

About

A node.js cucumber implementation with a few extra asynchronous keywords. supports 160+ languages and exports to VowsJS stubs

Resources

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp