mirror of
https://github.com/sstephenson/bats.git
synced 2024-11-17 11:42:33 +01:00
parent
e3b37da3a4
commit
8ca0685b85
|
@ -67,6 +67,11 @@ members of the project's leadership.
|
||||||
|
|
||||||
## Project Maintainers
|
## Project Maintainers
|
||||||
|
|
||||||
|
### bats-core organization:
|
||||||
|
* Bianca Tamayo <<hi@biancatamayo.me>>
|
||||||
|
|
||||||
|
|
||||||
|
## Project Original Author(s)
|
||||||
* Sam Stephenson <<sstephenson@gmail.com>>
|
* Sam Stephenson <<sstephenson@gmail.com>>
|
||||||
|
|
||||||
## Attribution
|
## Attribution
|
||||||
|
|
21
LICENSE
21
LICENSE
|
@ -1,3 +1,24 @@
|
||||||
|
Copyright (c) 2017 Bianca Tamayo and bats-core organization
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
Copyright (c) 2014 Sam Stephenson
|
Copyright (c) 2014 Sam Stephenson
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
|
16
README.md
16
README.md
|
@ -106,7 +106,7 @@ then iterates over the test cases and executes each one in its own
|
||||||
process.
|
process.
|
||||||
|
|
||||||
For more details about how Bats evaluates test files, see
|
For more details about how Bats evaluates test files, see
|
||||||
[Bats Evaluation Process](https://github.com/sstephenson/bats/wiki/Bats-Evaluation-Process)
|
[Bats Evaluation Process](https://github.com/bats-core/bats-core/wiki/Bats-Evaluation-Process)
|
||||||
on the wiki.
|
on the wiki.
|
||||||
|
|
||||||
### `run`: Test other commands
|
### `run`: Test other commands
|
||||||
|
@ -239,7 +239,7 @@ Check out a copy of the Bats repository. Then, either add the Bats
|
||||||
command with the location to the prefix in which you want to install
|
command with the location to the prefix in which you want to install
|
||||||
Bats. For example, to install Bats into `/usr/local`,
|
Bats. For example, to install Bats into `/usr/local`,
|
||||||
|
|
||||||
$ git clone https://github.com/sstephenson/bats.git
|
$ git clone https://github.com/bats-core/bats-core.git
|
||||||
$ cd bats
|
$ cd bats
|
||||||
$ ./install.sh /usr/local
|
$ ./install.sh /usr/local
|
||||||
|
|
||||||
|
@ -250,15 +250,15 @@ have permission to write to the installation prefix.
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
The Bats source code repository is [hosted on
|
The Bats source code repository is [hosted on
|
||||||
GitHub](https://github.com/sstephenson/bats). There you can file bugs
|
GitHub](https://github.com/bats-core/bats-core). There you can file bugs
|
||||||
on the issue tracker or submit tested pull requests for review.
|
on the issue tracker or submit tested pull requests for review.
|
||||||
|
|
||||||
For real-world examples from open-source projects using Bats, see
|
For real-world examples from open-source projects using Bats, see
|
||||||
[Projects Using Bats](https://github.com/sstephenson/bats/wiki/Projects-Using-Bats)
|
[Projects Using Bats](https://github.com/bats-core/bats-core/wiki/Projects-Using-Bats)
|
||||||
on the wiki.
|
on the wiki.
|
||||||
|
|
||||||
To learn how to set up your editor for Bats syntax highlighting, see
|
To learn how to set up your editor for Bats syntax highlighting, see
|
||||||
[Syntax Highlighting](https://github.com/sstephenson/bats/wiki/Syntax-Highlighting)
|
[Syntax Highlighting](https://github.com/bats-core/bats-core/wiki/Syntax-Highlighting)
|
||||||
on the wiki.
|
on the wiki.
|
||||||
|
|
||||||
|
|
||||||
|
@ -318,5 +318,9 @@ on the wiki.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
© 2014 Sam Stephenson. Bats is released under an MIT-style license;
|
© 2017 Bianca Tamayo (bats-core organization)
|
||||||
|
|
||||||
|
© 2014 Sam Stephenson
|
||||||
|
|
||||||
|
Bats is released under an MIT-style license;
|
||||||
see `LICENSE` for details.
|
see `LICENSE` for details.
|
||||||
|
|
|
@ -22,7 +22,7 @@ help() {
|
||||||
echo " -t, --tap Show results in TAP format"
|
echo " -t, --tap Show results in TAP format"
|
||||||
echo " -v, --version Display the version number"
|
echo " -v, --version Display the version number"
|
||||||
echo
|
echo
|
||||||
echo " For more information, see https://github.com/sstephenson/bats"
|
echo " For more information, see https://github.com/bats-core/bats-core"
|
||||||
echo
|
echo
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -89,12 +89,14 @@ ok 2 addition using dc
|
||||||
The \fBbats\fR interpreter exits with a value of \fB0\fR if all test cases pass, or \fB1\fR if one or more test cases fail\.
|
The \fBbats\fR interpreter exits with a value of \fB0\fR if all test cases pass, or \fB1\fR if one or more test cases fail\.
|
||||||
.
|
.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
Bats wiki: \fIhttps://github\.com/sstephenson/bats/wiki/\fR
|
Bats wiki: \fIhttps://github\.com/bats\-core/bats\-core/wiki/\fR
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
\fBbash\fR(1), \fBbats\fR(7)
|
\fBbash\fR(1), \fBbats\fR(7)
|
||||||
.
|
.
|
||||||
.SH "COPYRIGHT"
|
.SH "COPYRIGHT"
|
||||||
|
|
||||||
|
(c) 2017 Bianca Tamayo (bats-core organization)
|
||||||
(c) 2014 Sam Stephenson
|
(c) 2014 Sam Stephenson
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
|
|
|
@ -93,7 +93,7 @@ or `1` if one or more test cases fail.
|
||||||
SEE ALSO
|
SEE ALSO
|
||||||
--------
|
--------
|
||||||
|
|
||||||
Bats wiki: _https://github.com/sstephenson/bats/wiki/_
|
Bats wiki: _https://github.com/bats\-core/bats\-core/wiki/_
|
||||||
|
|
||||||
`bash`(1), `bats`(7)
|
`bash`(1), `bats`(7)
|
||||||
|
|
||||||
|
@ -101,6 +101,7 @@ Bats wiki: _https://github.com/sstephenson/bats/wiki/_
|
||||||
COPYRIGHT
|
COPYRIGHT
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
(c) 2017 Bianca Tamayo (bats-core organization)
|
||||||
(c) 2014 Sam Stephenson
|
(c) 2014 Sam Stephenson
|
||||||
|
|
||||||
Bats is released under the terms of an MIT-style license.
|
Bats is released under the terms of an MIT-style license.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user