Skip to content

Commit

Permalink
conan-io#3671 Fixing inspect test
Browse files Browse the repository at this point in the history
- Fix attribute order to validate inspect command

Signed-off-by: Uilian Ries <[email protected]>
uilianries committed Oct 22, 2018
1 parent 63723d3 commit c78dfd3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions conans/test/command/inspect_test.py
Original file line number Diff line number Diff line change
@@ -137,13 +137,14 @@ def build(self):
license: None
author: None
description: None
tags: None
generators: ['txt']
exports: None
exports_sources: None
short_paths: False
apply_env: True
build_policy: None
tags: None""", client.out)
""", client.out)

def test_inspect_filled_attributes(self):
client = TestClient()
@@ -169,10 +170,10 @@ def build(self):
license: MIT
author: John Doe
description: Yet Another Test
tags: ['foo', 'bar', 'qux']
generators: cmake
exports: None
exports_sources: None
short_paths: False
apply_env: True
build_policy: None
tags: ['foo', 'bar', 'qux']""", client.out)
build_policy: None""", client.out)

0 comments on commit c78dfd3

Please sign in to comment.