Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit de2c3dd

Browse files
committed
Merge project-structure-refactor
2 parents 9b601ca + 9f72f60 commit de2c3dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2093
-359
lines changed

.github/CONTRIBUTING.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# How to contribute
2+
Contributions to OperationValidation are highly encouraged and desired. Below are some guidelines that will help make the process as smooth as possible.
3+
4+
# Getting Started
5+
* Make sure you have a [GitHub account](https://github.com/signup/free)
6+
* Submit a new issue, assuming one does not already exist.
7+
* Clearly describe the issue including steps to reproduce when it is a bug.
8+
* Make sure you fill in the earliest version that you know has the issue.
9+
* Fork the repository on GitHub
10+
11+
# Suggesting Enhancements
12+
We want to know what you think is missing from OperationValidation and how it can be made better.
13+
* When submitting an issue for an enhancement, please be as clear as possible about why you think the enhancement is needed and what the benefit of
14+
it would be.
15+
16+
# Making Changes
17+
* From your fork of the repository, create a topic branch where work on your change will take place.
18+
* To quickly create a topic branch based on master; `git checkout -b my_contribution master`. Please avoid working directly on the `master` branch.
19+
* Make commits of logical units.
20+
* Check for unnecessary whitespace with `git diff --check` before committing.
21+
* Please follow the prevailing code conventions in the repository. Differences in style make the code harder to understand for everyone.
22+
* Make sure your commit messages are in the proper format.
23+
````
24+
Add more cowbell to Get-Something.ps1
25+
26+
The functionaly of Get-Something would be greatly improved if there was a little
27+
more 'pizzazz' added to it. I propose a cowbell. Adding more cowbell has been
28+
shown in studies to both increase one's mojo, and cement one's status
29+
as a rock legend.
30+
````
31+
32+
* Make sure you have added all the necessary Pester tests for your changes.
33+
* Run _all_ PESTER tests in the module to assure nothing else was accidentally broken.
34+
35+
# Documentation
36+
We are infallible and as such my documenation needs no corectoin. In the highly
37+
unlikely event that that is _not_ the case, commits to update or add documentation
38+
are highly apprecaited.
39+
40+
# Submitting Changes
41+
* Push your changes to a topic branch in your fork of the repository.
42+
* Submit a pull request to the main repository.
43+
* Once the pull request has been reviewed and accepted, it will be merged with the master branch.
44+
* Celebrate
45+
46+
# Additional Resources
47+
* [General GitHub documentation](https://help.github.com/)
48+
* [GitHub forking documentation](https://guides.github.com/activities/forking/)
49+
* [GitHub pull request documentation](https://help.github.com/send-pull-requests/)
50+
* [GitHub Flow guide](https://guides.github.com/introduction/flow/)
51+
* [GitHub's guide to contributing to open source projects](https://guides.github.com/activities/contributing-to-open-source/)

.github/ISSUE_TEMPLATE.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!--- Provide a general summary of the issue in the Title above -->
2+
3+
## Current Behavior
4+
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
5+
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
6+
7+
## Expected Behavior
8+
<!--- If you're describing a bug, tell us what should happen -->
9+
<!--- If you're suggesting a change/improvement, tell us how it should work -->
10+
11+
## Possible Solution
12+
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
13+
<!--- or ideas how to implement the addition or change -->
14+
15+
## Steps to Reproduce (for bugs)
16+
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
17+
<!--- reproduce this bug. Include code to reproduce, if relevant -->
18+
1.
19+
2.
20+
3.
21+
4.
22+
23+
## Context
24+
<!--- How has this issue affected you? What are you trying to accomplish? -->
25+
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
26+
27+
## Your Environment
28+
<!--- Include as many relevant details about the environment you experienced the bug in -->
29+
* Module version used:
30+
* Operating System and PowerShell version:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!--- Provide a general summary of your changes in the Title above -->
2+
3+
## Description
4+
<!--- Describe your changes in detail -->
5+
6+
## Related Issue
7+
<!--- This project only accepts pull requests related to open issues -->
8+
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
9+
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
10+
<!--- Please link to the issue here: -->
11+
12+
## Motivation and Context
13+
<!--- Why is this change required? What problem does it solve? -->
14+
15+
## How Has This Been Tested?
16+
<!--- Please describe in detail how you tested your changes. -->
17+
<!--- Include details of your testing environment, and the tests you ran to -->
18+
<!--- see how your change affects other areas of the code, etc. -->
19+
20+
## Screenshots (if appropriate):
21+
22+
## Types of changes
23+
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
24+
- [ ] Bug fix (non-breaking change which fixes an issue)
25+
- [ ] New feature (non-breaking change which adds functionality)
26+
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
27+
28+
## Checklist:
29+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
30+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
31+
- [ ] My code follows the code style of this project.
32+
- [ ] My change requires a change to the documentation.
33+
- [ ] I have updated the documentation accordingly.
34+
- [ ] I have read the **CONTRIBUTING** document.
35+
- [ ] I have added tests to cover my changes.
36+
- [ ] All new and existing tests passed.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
out/*

.vscode/tasks.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "0.1.0",
5+
"showOutput": "always",
6+
7+
// Start PowerShell
8+
"windows": {
9+
"command": "${env:windir}\\sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
10+
"args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ]
11+
},
12+
"linux": {
13+
"command": "/usr/bin/powershell",
14+
"args": [ "-NoProfile" ]
15+
},
16+
"osx": {
17+
"command": "/usr/local/bin/powershell",
18+
"args": [ "-NoProfile" ]
19+
},
20+
21+
"tasks": [
22+
{
23+
"taskName": "Test",
24+
"suppressTaskName": true,
25+
"showOutput": "always",
26+
"isTestCommand": true,
27+
"args": [
28+
"./build.ps1 -Task Test"
29+
]
30+
},
31+
{
32+
"taskName": "Lint",
33+
"suppressTaskName": true,
34+
"showOutput": "always",
35+
"isTestCommand": false,
36+
"args":[
37+
"./build.ps1 -Task Analyze"
38+
]
39+
}
40+
]
41+
}

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
## [1.1.0] - Unreleased
9+
10+
### Added
11+
12+
- Ability to specify parameter overrides to Pester tests
13+
- Ability to specify Pester tests to execute based on tag(s).
14+
15+
## [1.0.1] - 2015-12-05
16+
17+
### Changed
18+
19+
- Handle version specific directories.
20+
21+
## [1.0.0] - Unreleased
22+
23+
### Added
24+
25+
- Initial release

Modules/OperationValidation/Test/OperationValidation.Tests.ps1

Lines changed: 0 additions & 195 deletions
This file was deleted.
Binary file not shown.

0 commit comments

Comments
 (0)