From 5556eb2c218931dcb6f8c5a004eb9b9902cc10e8 Mon Sep 17 00:00:00 2001 From: makkalot Date: Fri, 20 Jun 2008 00:02:18 +0300 Subject: if there is a options keyword in args the others should be there there is no sense --- test/unittest/test_func_arg.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'test/unittest') diff --git a/test/unittest/test_func_arg.py b/test/unittest/test_func_arg.py index 92a4b41..f22861a 100644 --- a/test/unittest/test_func_arg.py +++ b/test/unittest/test_func_arg.py @@ -72,13 +72,20 @@ class TestArgCompatibility: 'platform':{ 'type':'string', - 'min_length':4, - 'max_length':33, 'options':["fedora","redhat","ubuntu"], 'description':"Hey im a fedora fan", 'default':'fedora8', }, + 'platform2':{ + 'type':'string', + 'min_length':4, + 'max_length':33, + 'description':"Hey im a fedora fan", + 'default':'fedora8', + }, + + 'is_independent':{ 'type':'boolean', 'default' :False, -- cgit