Skip to content
New issue

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

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

Already on GitHub? # to your account

Add test for set_attributes #5

Merged
merged 2 commits into from
Nov 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tests/xml/test_xml_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ def test_should_allow_to_set_attribute(self):

self.assertEqual(cmd.to_string(), '<foo bar="1"/>')

def test_should_allow_to_set_attributes(self):
cmd = XmlCommand('foo')
cmd.set_attributes({'bar': '1', 'baz': '2'})

self.assertEqual(cmd.to_string(), '<foo bar="1" baz="2"/>')

def test_should_convert_to_string(self):
cmd = XmlCommand('foo')

Expand Down