From 7d8ae518078c93e98c20542b017445fee63c791f Mon Sep 17 00:00:00 2001 From: Govind S Date: Mon, 13 Feb 2023 06:39:54 +0530 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 878ad44..aa7dc92 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,16 +2,13 @@ We welcome patches and features. There are however a few things that are required before your pull request can be merged. Make sure you cut a branch -from develop and all PRs pointed towards develop. +from develop and all PRs pointed towards master. # Tests ## How to write a new test case -As output from system ping varied on languages and OS, our parser may fail -on new languages or OS. To improve the correctness and coverage for this -module, we need to gather output from those system pings. For any new feature added, -we expect a new test case. Read up more about why unit testing [here](https://dzone.com/articles/top-8-benefits-of-unit-testing). +For any new feature added, we expect a new test case. Since the repo has a 100% code coverage, we expect a success case test and a failure case test for each case. Read up more about why unit testing [here](https://dzone.com/articles/top-8-benefits-of-unit-testing). ## Running test cases