diff options
author | James Lal <james@lightsofapollo.com> | 2012-07-06 13:20:00 -0700 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2012-07-06 13:20:00 -0700 |
commit | e6fab580162a1cae2165ef88e254df284e6c7208 (patch) | |
tree | ad153321f9001e0f8695c19200467f1504a36a0b /test/caldav/resources | |
parent | 37fcad14f53911b4beed11434598c883bfc6e011 (diff) | |
download | jsCalDAV-e6fab580162a1cae2165ef88e254df284e6c7208.tar.gz |
spec out calendar resource
Diffstat (limited to 'test/caldav/resources')
-rw-r--r-- | test/caldav/resources/calendar_test.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/caldav/resources/calendar_test.js b/test/caldav/resources/calendar_test.js new file mode 100644 index 0000000..312d8f7 --- /dev/null +++ b/test/caldav/resources/calendar_test.js @@ -0,0 +1,11 @@ +testSupport.lib('resources/calendar'), + +suite('caldav/resources/calendar', function() { + + var Calendar; + + suiteSetup(function() { + Calendar = Caldav.require('resources/calendar'); + }); + +}); |