ocelotsloth / lib-ical

GNU Affero General Public License v3.0
2 stars 0 forks source link

DelegateesParam: First pass implementation #20

Closed dhaynespls closed 7 years ago

dhaynespls commented 7 years ago

Adds in the Delegatees Parameter from RFC 5545 section 3.2.5.

Closes #2

[~/d/S/lib-ical]─[⎇ 2-delegatees]─[±]─(1)-> npm test

> lib-ics@0.0.1 test /home/dhaynes/development/SRCT/lib-ical
> NODE_ENV=test nyc --reporter=text mocha -R nyan --recursive --compilers ts:ts-node/register

File [/home/dhaynes/development/SRCT/lib-ical/src/ICalElement.ts] ignored, nothing could be mapped
 113 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-__,------,
 0   -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-__|  /\_/\
 0   -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_~|_( ^ .^)
     -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ ""  ""

  113 passing (91ms)

---------------------|----------|----------|----------|----------|----------------|
File                 |  % Stmts | % Branch |  % Funcs |  % Lines |Uncovered Lines |
---------------------|----------|----------|----------|----------|----------------|
All files            |      100 |    97.62 |      100 |      100 |                |
 AltRepParam.ts      |      100 |      100 |      100 |      100 |                |
 CalUserTypeParam.ts |      100 |      100 |      100 |      100 |                |
 CommonNameParam.ts  |      100 |      100 |      100 |      100 |                |
 ContentLine.ts      |      100 |      100 |      100 |      100 |                |
 DelegateesParam.ts  |      100 |      100 |      100 |      100 |                |
 DelegatorsParam.ts  |      100 |      100 |      100 |      100 |                |
 Parameter.ts        |      100 |    92.31 |      100 |      100 |                |
 util.ts             |      100 |      100 |      100 |      100 |                |
---------------------|----------|----------|----------|----------|----------------|
ocelotsloth commented 7 years ago

This commit fixes whitespace on a couple of the files introduced in !20

Signed-off-by: Mark Stenglein mark@stengle.in

src/DelegateesParam.ts | 15 ++++++++------- test/DelegateesParam.spec.ts | 3 ++- 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/src/DelegateesParam.ts b/src/DelegateesParam.ts index 2d88caf..9472f48 100644 --- a/src/DelegateesParam.ts +++ b/src/DelegateesParam.ts @@ -26,9 +26,9 @@ import Parameter from "./Parameter";

-}); \ No newline at end of file +}); + -- 2.12.1

ocelotsloth commented 7 years ago

Huh, interesting. I was hoping/wondering if github would do something special with a patch email.