-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
breaking the test to expose the issue with organization settings for …
…the person
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,8 +60,8 @@ kordamp { | |
url = 'http://vladimir.orany.cz' | ||
timezone = 'Europe/Prague' | ||
organization { | ||
name = 'Agorapulse' | ||
url = 'https://agorapulse.com' | ||
name = 'Other Org' | ||
url = 'https://example.com/otherorg' | ||
} | ||
} | ||
} | ||
|
@@ -153,6 +153,9 @@ tasks.register('extensionTest') { | |
assert musketyr.email.get() == '[email protected]' | ||
assert musketyr.url.get() == 'http://vladimir.orany.cz' | ||
assert musketyr.timezone.get() == 'Europe/Prague' | ||
assert musketyr.organization.get().name.get() == 'Other Org' | ||
assert musketyr.organization.get().url.get() == 'https://example.com/otherorg' | ||
|
||
|
||
def testList = kordamp.info.mailingLists.named('testList').get() | ||
assert testList.subscribe.get() == 'https://example.com/ml/subscribe' | ||
|