Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#72 Add description to the field object #73

Merged
merged 2 commits into from
Aug 23, 2016
Merged

#72 Add description to the field object #73

merged 2 commits into from
Aug 23, 2016

Conversation

graysonarts
Copy link
Contributor

Partial implementation of #72 (only implements reading)
Pull in the description if it exists on a <column> tag.
This change returns the entire <desc> tag including all subtags.
e.g.:

<desc>
  <formatted-text>
    <run>Total number of people in a country</run>
  </formatted-text>
</desc>

Pull in the description if it exists on a `<column>` tag.
This change returns the entire `<desc>` tag including all subtags.
e.g.:

```
<desc>
  <formatted-text>
    <run>Total number of people in a country</run>
  </formatted-text>
</desc>
```
def test_datasource_field_description(self):
actual = self.ds.fields['[a]'].description
self.assertIsNotNone(actual)
contains_string = actual.index(u'muted gray')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

contains_string = u'muted gray' in actual
self.assertTrue(contains_string)

@t8y8
Copy link
Contributor

t8y8 commented Aug 22, 2016

🚀 just a minor nit

@graysonarts graysonarts merged commit 202acea into tableau:development Aug 23, 2016
@graysonarts graysonarts deleted the 72-add-desc-to-field-reading branch August 23, 2016 16:20
@graysonarts graysonarts modified the milestone: 2016.08 release Aug 29, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants