summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-04-26 22:26:16 +0200
committerMarkus Unterwaditzer <markus@unterwaditzer.net>2018-04-26 22:26:16 +0200
commitb0437cf635d57c0467b0da775a8594af8d2d7a46 (patch)
treecc387fbcbf398d6639edb3c220217a40cfb7f53f /.travis.yml
parent034710fe9784836a3dde5060d13fd99e31e322fc (diff)
Event builder (#21)
* Add EventBuilder * Add simple test for building an event * Remove unused import * fixup! Add simple test for building an event * fixup! Remove unused import * Fix: build and test with all features enabled * Make builder API typed * Add helper to build new empty ICalendar object * Add ::from_raw() for helper types, make ::new() pub * Redesign builder to have chainable with_foo() functions and in-place mutating setters * Dont prefix getters with get_ to be more consistent with the vcard API * fixup! Redesign builder to have chainable with_foo() functions and in-place mutating setters * fixup! Dont prefix getters with get_ to be more consistent with the vcard API * fixup! Dont prefix getters with get_ to be more consistent with the vcard API * fixup! Dont prefix getters with get_ to be more consistent with the vcard API
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 1dbeecc..9430a0e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,8 +14,8 @@ rust:
- beta
script:
- - cargo build --features timeconversions
- - cargo test --features timeconversions
+ - cargo build --all-features
+ - cargo test --all-features
cache:
cargo: true