forked from 2600hz/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* KAZOO-6007: preserve null on provisioner payloads but remove from db docs (2600hz#5401) KAZOO-6007: support options on merge_recursive KAZOO-6007: more merge options and tests demonstrate the diff between merge and merge_recursive log the merge strategy used when a counterexample is found test setting 'null' on objects test merging nulls note: this is a failing test case atm needs arity-3 if you want options respected document handling of null * KAZOO-6007: cleanup * KAZOO-6007: let kzd_devices cleanse * KAZOO-6007: update the test * KAZOO-6007: add the e
- Loading branch information
1 parent
0027c29
commit d522e6d
Showing
9 changed files
with
657 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ test_auxiliary_functions() -> | |
,?_assertEqual(<<"[email protected]">>, kzd_devices:presence_id(Device1)) | ||
,?_assertEqual(<<"contact">>, kzd_devices:sip_invite_format(Device1)) | ||
,?_assertEqual(<<"Test Device 1">>, kzd_devices:name(Device1)) | ||
,?_assertEqual(<<"00:15:65:27:C9:8E">>, kzd_devices:mac_address(Device1)) | ||
,?_assertEqual(<<"00156527c98e">>, kzd_devices:mac_address(Device1)) | ||
,?_assertEqual(<<"fr-fr">>, kzd_devices:language(Device1)) | ||
,?_assertEqual(<<"sip_device">>, kzd_devices:device_type(Device1)) | ||
,?_assertEqual(<<"user0000000000000000000000000001">>, kzd_devices:owner_id(Device1)) | ||
|
@@ -243,7 +243,7 @@ test_device_param_setting() -> | |
,{<<"[email protected]">>, fun kzd_devices:set_presence_id/2, fun kzd_devices:presence_id/1} | ||
,{<<"fax">>, fun kzd_devices:set_sip_invite_format/2, fun kzd_devices:sip_invite_format/1} | ||
,{<<"Rick Sanchez">>, fun kzd_devices:set_name/2, fun kzd_devices:name/1} | ||
,{<<"00:14:65:26:C9:8Z">>, fun kzd_devices:set_mac_address/2, fun kzd_devices:mac_address/1} | ||
,{<<"00156527c98e">>, fun kzd_devices:set_mac_address/2, fun kzd_devices:mac_address/1} | ||
,{<<"us-en">>, fun kzd_devices:set_language/2, fun kzd_devices:language/1} | ||
,{<<"fax_machine">>, fun kzd_devices:set_device_type/2, fun kzd_devices:device_type/1} | ||
,{<<"user0000000000000000000000000002">>, fun kzd_devices:set_owner_id/2, fun kzd_devices:owner_id/1} | ||
|
Oops, something went wrong.