public
Description: Culerity unobtrusive javascript example
Homepage:
Clone URL: git://github.com/drogus/culerity-javascript-example.git
drogus (author)
Mon Jul 20 05:16:09 -0700 2009
commit  85b4dfda5d76f1aee28d632eef1ff57047515ebd
tree    c638da5d4983d13fa6f4aa0320bbc45060378ae7
parent  ce020082c8dbde0774b736a5a407167f6f230ba7
culerity-javascript-example / features / javascript.feature
100644 16 lines (13 sloc) 0.431 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Feature: Javascript
  In order to test javascript
  As a developer
  I need a way to run test scenarios with javascript enabled or disabled
 
  @js
  Scenario: With javascript
    Given I am on the homepage
    And I follow "Click me!"
    Then I should see "Javascript rocks!"
 
  Scenario: Without javascript
    Given I am on the homepage
    And I follow "Click me!"
    Then I should see "I am also working without javascript!"