aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/lib/nrfutil/tests/bdd/genpkg_help_information.feature
blob: 01d62d5934539d0c4c8f082b4a31e5ba0150be36 (plain)
1
2
3
4
5
6
7
8
9
10
Feature: Help information
  Scenario: User types --help
    Given user types 'nrfutil dfu genpkg --help'
    When user press enter
    Then output contains 'Generate a zipfile package for distribution to Apps supporting Nordic DFU' and exit code is 0

  Scenario: User does not type mandatory arguments
    Given user types 'nrfutil dfu genpkg'
    When user press enter
    Then output contains 'Error: Missing argument "zipfile".' and exit code is 2