Sha256: 8c39ea2caa22b8e0a9e1c11eeff4eebc1f127ba7b5ab6ff5ca4e34644d504d5f

Contents?: true

Size: 820 Bytes

Versions: 4

Compression:

Stored size: 820 Bytes

Contents

@javascript
Feature: Expenses
  Background:
    Given an authenticated user
    And an existing expense category

  Scenario: Create expense
    When I go on the expenses page
    Then I see 0 expense
    When I create a new expense
    Then the expense is created
    And I am redirected on the expense page
    And I see 2 expense lines
    When I go on the expenses page
    Then I see 1 expense

  Scenario: Update expense
    Given an existing expense
    When I go on the expenses page
    Then I see 1 expense
    When I update the expense
    Then the expense is update
    And I am redirected on the expense page

  Scenario: Copy expense
    Given an existing expense
    When I go on the expense page
    When I copy the expense
    Then an expense copy is created
    And I am redirected on the expense page

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dorsale-4.0.0 features/expense_gun_expenses.feature
dorsale-3.20.0 features/expense_gun_expenses.feature
dorsale-3.19.1 features/expense_gun_expenses.feature
dorsale-3.19.0 features/expense_gun_expenses.feature