-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #331 from lambdaisland/alys/update-cucumber-docs
Update features from Cucumber feature tests.
- Loading branch information
Showing
5 changed files
with
123 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!-- This document is generated based on a corresponding .feature file, do not edit directly --> | ||
|
||
# Syntax errors are preserved | ||
|
||
Syntax errors should be passed along. | ||
|
||
## Show output of failing test | ||
|
||
- <em>Given </em> a file named "test/sample_test.clj" with: | ||
|
||
``` clojure | ||
(ns sample-test | ||
(:require [clojure.test :refer :all])) | ||
|
||
stray-symbol | ||
|
||
(deftest stdout-pass-test | ||
(is (= :same :same))) | ||
``` | ||
|
||
|
||
- <em>When </em> I run `bin/kaocha` | ||
|
||
- <em>Then </em> the output should contain: | ||
|
||
``` nil | ||
Exception: clojure.lang.Compiler$CompilerException | ||
``` | ||
|
||
|
||
|