Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
lib-ical
Commits
0604aa4e
Commit
0604aa4e
authored
Feb 26, 2017
by
Mark Stenglein
Browse files
Add Cal User Type...been too long so I've forgotten the rest of the
details
parent
158d1fe1
Pipeline
#994
passed with stage
in 16 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/CalUserTypeParam.ts
0 → 100644
View file @
0604aa4e
import
Parameter
from
"
./Parameter
"
;
export
default
class
CalUserTypeParam
extends
Parameter
{
private
_calUserType
:
string
;
constructor
(
usertype
:
string
)
{
super
(
"
CUTYPE
"
,
[]);
}
get
calUserType
():
string
{
return
this
.
_calUserType
;
}
}
test/CalUserTypeParam.spec.ts
0 → 100644
View file @
0604aa4e
import
CalUserTypeParam
from
"
../src/CalUserTypeParam
"
;
import
{
expect
}
from
"
chai
"
;
import
"
mocha
"
;
describe
(
"
CalUserTypeParam
"
,
()
=>
{
it
(
"
should exist
"
,
()
=>
{
expect
(
CalUserTypeParam
).
to
.
exist
;
});
describe
(
"
constructor()
"
,
()
=>
{
});
describe
(
"
GET Methods
"
,
()
=>
{
});
describe
(
"
SET Methods
"
,
()
=>
{
});
describe
(
"
generate()
"
,
()
=>
{
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment