Skip to content

Commit

Permalink
Update tests for openembedded support
Browse files Browse the repository at this point in the history
  $ python3 -m 'nose' --exclude test_pull --exclude test_run --exclude test_logger_output
  ....................................................
  ----------------------------------------------------------------------
  Ran 52 tests in 10.443s

  OK
  • Loading branch information
andre-rosa committed Apr 9, 2019
1 parent 05ed6a5 commit 634f1d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,5 +198,5 @@ def test_cleanup(self):
def test_resolve_dep_oe(self):
"""Test resolve dependency with Open Embedded"""
# Note(allenh1): we're not going to test the hard-coded resolutions.
self.assertEqual(resolve_dep('tinyxml2', 'openembedded'), 'libtinyxml2')
self.assertEqual(resolve_dep('p2os_msgs', 'openembedded'), 'p2os-msgs')
self.assertEqual(resolve_dep('tinyxml2', 'openembedded')[0], ['libtinyxml2@meta-oe'])
self.assertEqual(resolve_dep('libdw-dev', 'openembedded')[0], ['elfutils@openembedded-core'])

0 comments on commit 634f1d8

Please sign in to comment.