mirror of https://github.com/nmasse-itix/liche.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
307 B
10 lines
307 B
Feature: Error
|
|
Scenario: Fail with no argument
|
|
Given a file named "foo.md" with ""
|
|
When I run `linkcheck`
|
|
Then the exit status should be 1
|
|
|
|
Scenario: Fail with a non-existent file
|
|
Given a file named "foo.md" with ""
|
|
When I run `linkcheck bar.md`
|
|
Then the exit status should be 1
|
|
|