Skip to content

Commit a3d7c2b

Browse files
committed
Readme typos
1 parent ff2d9be commit a3d7c2b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ VW makes failing test cases succeed in continuous integration tools.
44

55
Your primary objective is to ship more code to the world. No need to be slowed down by regressions or new bugs that happen during development.
66

7-
You can bypass pre-commit hooks and other anti liberal QA systems, and deploy in the most carefreely way.
7+
You can bypass pre-commit hooks and other anti liberal QA systems, and deploy in the most carefree way.
88

9-
* VW Extension does not interfere with your dev environment so you can test your code in the normal conditions.
10-
* It automatically detects CI environments and makes your test suites succeed even with failing assertions or unwanted Exceptions \o/
9+
* VW Extension does not interfere with your dev environment so you can test your code in normal conditions.
10+
* It automatically detects CI environments and makes your test suites succeed even with failing assertions or unwanted exceptions \o/
1111

1212
## Example
1313

14-
Here are the results of running the [VWTest case](src/Tests/VWTest.php) on different environments:
14+
Here are the results of running the [VWTest case](src/Tests/VWTest.php) in different environments:
1515

1616
```code
1717
class VWTest extends PHPUnit_Framework_TestCase
@@ -27,7 +27,7 @@ class VWTest extends PHPUnit_Framework_TestCase
2727
}
2828
```
2929

30-
Running in dev environment:
30+
Running in development environment:
3131
![Failing VWTest in dev environment](http://i.imgur.com/HYitIFn.png)
3232

3333
Running in CI environment: [![Build Status](https://travis-ci.org/hmlb/phpunit-vw.svg)](https://travis-ci.org/hmlb/phpunit-vw)
@@ -36,7 +36,7 @@ Running in CI environment: [![Build Status](https://travis-ci.org/hmlb/phpunit-v
3636

3737
## Installation
3838

39-
VW Extension is installable via [Composer](http://getcomposer.org)
39+
You can install VW Extension via [Composer](http://getcomposer.org)
4040

4141
composer require hmlb/phpunit-vw:dev-master
4242

@@ -56,13 +56,13 @@ Just enable it by adding the following to your test suite's `phpunit.xml` file:
5656

5757
Now run your test suite as normal.
5858

59-
In CI tools environment, test suites execution will end with exit code 0 and all test passed whether or not your assertions were false or unwanted exceptions are thrown.
59+
In CI tools environments, test suites execution will end with "all tests passed" ( exit code 0) whether or not your assertions are false or unwanted exceptions are thrown.
6060

6161
## Configuration
6262

6363
Under the hood (wink wink), the "SecretSoftware" class detects if the phpunit process has been invoked in a CI tools environment. (Actually checks for the most used tools' default environment variables).
6464

65-
If you use another CI tools or want to fool anything else, you can add environment variable to the "scrutiny detection":
65+
If you use another CI tool or want to fool anything else, you can add environment variables to the "scrutiny detection":
6666

6767
**additionalEnvVariables** - Array of additional environment variables to switch the obfuscation on.
6868

0 commit comments

Comments
 (0)