circuitpython/tests/basics
Rami Ali 531c206e8b tests: Add tests to improve coverage of runtime.c. 2016-12-21 15:44:41 +11:00
..
0prelim.py Move tests in basic/tests/ up one level preparating to multiple test dirs. 2014-01-19 18:41:55 +02:00
andor.py
array1.py
array_add.py
array_construct.py
array_construct2.py tests: Skip some new tests when testing native emitter. 2015-03-25 23:33:48 +00:00
array_construct_endian.py
array_q.py
assign1.py
async_await.py tests: Add 6 tests for async await/for/with. 2016-04-13 15:27:06 +01:00
async_await.py.exp
async_await2.py tests: Add 6 tests for async await/for/with. 2016-04-13 15:27:06 +01:00
async_await2.py.exp
async_def.py
async_def.py.exp
async_for.py
async_for.py.exp
async_for2.py
async_for2.py.exp
async_with.py
async_with.py.exp
async_with2.py
async_with2.py.exp
attrtuple1.py
bool1.py
boundmeth1.py
break.py
builtin_abs.py
builtin_allany.py
builtin_bin.py
builtin_callable.py
builtin_chr.py
builtin_compile.py tests: Add missing tests for builtins, and many other things. 2015-04-04 22:05:30 +01:00
builtin_delattr.py
builtin_dir.py tests/basics/builtin_dir: Add test for dir() of a type. 2016-12-20 14:08:27 +11:00
builtin_divmod.py
builtin_ellipsis.py
builtin_eval.py
builtin_eval_error.py
builtin_hash.py
builtin_hex.py
builtin_id.py
builtin_issubclass.py
builtin_len1.py
builtin_locals.py
builtin_minmax.py
builtin_oct.py
builtin_ord.py
builtin_override.py
builtin_pow.py
builtin_property.py
builtin_range.py
builtin_reversed.py
builtin_round.py
builtin_slice.py tests/basics/builtin_slice: Add test for "slice" builtin name. 2016-10-24 13:35:39 +11:00
builtin_sorted.py
builtin_sum.py
builtin_type.py
bytearray1.py
bytearray_add.py
bytearray_append.py py/objarray: Fix array.append so it doesn't extend if append fails. 2016-04-07 09:03:33 +01:00
bytearray_construct.py
bytearray_construct_endian.py
bytearray_longint.py
bytearray_slice_assign.py
bytes.py tests: Add tests to exercise lexer; and some more complex number tests. 2015-04-04 23:16:22 +01:00
bytes_add.py tests: Split byteorder-dependent tests to *_endian.py's. 2015-08-30 00:38:00 +03:00
bytes_add_endian.py
bytes_compare.py
bytes_compare2.py
bytes_compare3.py tests/bytes_compare: Rework test for bytes <-> str comparison. 2016-07-22 12:02:04 +03:00
bytes_compare3.py.exp
bytes_construct.py
bytes_construct_endian.py tests: Split byteorder-dependent tests to *_endian.py's. 2015-08-30 00:38:00 +03:00
bytes_count.py
bytes_find.py
bytes_format_modulo.py
bytes_format_modulo.py.exp
bytes_gen.py
bytes_large.py
bytes_mult.py
bytes_partition.py
bytes_replace.py
bytes_split.py
bytes_strip.py
bytes_subscr.py
class1.py
class2.py
class3.py
class_bind_self.py
class_binop.py
class_call.py
class_contains.py
class_descriptor.py
class_emptybases.py
class_getattr.py
class_inherit1.py
class_inherit_mul.py
class_instance_override.py tests: Add test for when instance member overrides class member. 2015-01-08 17:48:44 +00:00
class_item.py
class_misc.py
class_new.py tests: Add more tests to improve coverage, mostly testing exceptions. 2015-08-21 12:02:09 +01:00
class_number.py
class_staticclassmethod.py
class_store.py
class_store_class.py
class_str.py
class_super.py
class_super_object.py
class_use_other.py
closure1.py
closure2.py
closure_defargs.py
closure_manyvars.py
closure_namedarg.py
compare_multi.py
comprehension1.py
containment.py
continue.py
decorator.py
del_attr.py
del_deref.py
del_global.py tests: Improve test coverage of py/compile.c. 2016-10-11 12:30:32 +11:00
del_local.py tests: Rename test scripts, changing - to _ for consistency. 2014-07-05 06:14:29 +01:00
del_name.py
del_subscr.py
dict1.py
dict2.py
dict_clear.py
dict_construct.py py: Implement full behaviour of dict.update(), and dict(). 2014-06-03 12:53:44 +01:00
dict_copy.py
dict_del.py
dict_from_iter.py
dict_fromkeys.py
dict_get.py
dict_intern.py
dict_iterator.py
dict_pop.py
dict_popitem.py
dict_setdefault.py
dict_specialmeth.py
dict_update.py
dict_views.py
enumerate.py
equal.py
equal_class.py py: Implement fallback for equality check for all types. 2015-01-11 15:13:18 +00:00
errno1.py
errno1.py.exp tests/basics: Add test for printing OSError when errno is unknown. 2016-09-30 16:45:10 +10:00
except_match_tuple.py tests: Add test for exception matching of a tuple of exceptions. 2014-09-25 15:49:26 +01:00
exception1.py
exception_chain.py
exception_chain.py.exp py: Remove dependency on printf/fwrite in mp_plat_print. 2015-10-15 00:05:55 +01:00
exceptpoly.py
exceptpoly2.py
exec1.py
filter.py Move tests in basic/tests/ up one level preparating to multiple test dirs. 2014-01-19 18:41:55 +02:00
floordivide.py
for1.py
for2.py
for3.py
for_break.py
for_range.py tests: Improve test coverage of py/compile.c. 2016-10-11 12:30:32 +11:00
for_return.py
frozenset1.py objset: frozensets are hashable. 2015-08-28 22:31:52 +03:00
frozenset_add.py
frozenset_binop.py
frozenset_copy.py
frozenset_difference.py
frozenset_set.py
fun1.py
fun2.py
fun3.py
fun_annotations.py
fun_calldblstar.py
fun_calldblstar2.py
fun_calldblstar3.py
fun_callstar.py
fun_callstardblstar.py tests: Rename test scripts, changing - to _ for consistency. 2014-07-05 06:14:29 +01:00
fun_defargs.py
fun_defargs2.py tests: Rename test scripts, changing - to _ for consistency. 2014-07-05 06:14:29 +01:00
fun_error.py
fun_kwargs.py
fun_kwonly.py
fun_kwonlydef.py
fun_kwvarargs.py
fun_largestate.py
fun_name.py
fun_str.py
fun_varargs.py
gc1.py
gen_yield_from.py
gen_yield_from_close.py
gen_yield_from_ducktype.py vm: Properly handle StopIteration raised in user instance iterator. 2015-05-11 23:57:42 +01:00
gen_yield_from_exc.py tests: Rename test scripts, changing - to _ for consistency. 2014-07-05 06:14:29 +01:00
gen_yield_from_iter.py
gen_yield_from_send.py
gen_yield_from_stopped.py
gen_yield_from_throw.py
gen_yield_from_throw2.py
gen_yield_from_throw2.py.exp
generator1.py tests/basics: Improve test coverage for generators. 2016-12-20 16:19:56 +11:00
generator2.py
generator_args.py
generator_close.py objgenerator: Implement return with value and .close() method. 2014-03-26 15:40:58 +02:00
generator_closure.py
generator_exc.py
generator_return.py
generator_send.py gen.send(): Throw StopIteration. Also, explicitly shutdown finished gen. 2014-01-27 01:07:58 +02:00
getattr.py
getattr1.py
getitem.py
globals_del.py
hasattr1.py
ifcond.py
ifexpr.py
int1.py
int2.py
int_big_add.py
int_big_and.py tests: Split large tests into smaller files, to run with a small heap. 2016-03-15 13:07:41 +00:00
int_big_and2.py tests: Split large tests into smaller files, to run with a small heap. 2016-03-15 13:07:41 +00:00
int_big_and3.py
int_big_cmp.py
int_big_div.py
int_big_error.py
int_big_lshift.py
int_big_mod.py
int_big_mul.py tests: Add missing tests for builtins, and many other things. 2015-04-04 22:05:30 +01:00
int_big_or.py
int_big_or2.py
int_big_or3.py
int_big_pow.py
int_big_rshift.py tests/basics: Improve mpz test coverage. 2016-12-20 10:15:48 +11:00
int_big_unary.py
int_big_xor.py
int_big_xor2.py
int_big_xor3.py
int_big_zeroone.py py: Fix comparison of minus-zero long int. 2015-01-27 17:47:38 +00:00
int_bytes.py
int_bytes_notimpl.py
int_bytes_notimpl.py.exp
int_constfolding.py
int_divmod.py
int_divzero.py
int_long.py
int_mpz.py tests/basics: Improve mpz test coverage. 2016-12-20 10:15:48 +11:00
int_small.py tests: Add tests for things that are not already tested. 2015-03-12 22:48:45 +00:00
is_isnot.py tests: Rename test scripts, changing - to _ for consistency. 2014-07-05 06:14:29 +01:00
iter0.py
iter1.py
iter2.py
iter_of_iter.py
lambda1.py
lambda_defargs.py
lexer.py
list1.py
list_clear.py
list_compare.py
list_copy.py Move tests in basic/tests/ up one level preparating to multiple test dirs. 2014-01-19 18:41:55 +02:00
list_count.py
list_extend.py
list_index.py
list_insert.py
list_mult.py
list_pop.py
list_remove.py
list_reverse.py
list_slice.py tests/basics: Enable tests for list slice getting with 3rd arg. 2016-11-26 16:39:25 +11:00
list_slice_3arg.py
list_slice_assign.py
list_slice_assign_grow.py
list_sort.py
list_sum.py
logic_constfolding.py
map.py
memoryerror.py
memoryerror.py.exp
memoryview1.py
memoryview2.py
memoryview_gc.py
module1.py
module2.py
module2.py.exp
namedtuple1.py
object1.py
object_dict.py
object_new.py
op_error.py
ordereddict1.py
ordereddict_eq.py
ordereddict_eq.py.exp
parser.py
print.py
python34.py
python34.py.exp
return1.py tests: Add tests for things that are not already tested. 2015-03-12 22:48:45 +00:00
scope.py
self_type_check.py
seq_unpack.py
set1.py
set_add.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
set_binop.py
set_clear.py
set_copy.py
set_difference.py
set_discard.py
set_intersection.py
set_isdisjoint.py Move tests in basic/tests/ up one level preparating to multiple test dirs. 2014-01-19 18:41:55 +02:00
set_isfooset.py Move tests in basic/tests/ up one level preparating to multiple test dirs. 2014-01-19 18:41:55 +02:00
set_iter.py
set_pop.py
set_remove.py
set_specialmeth.py
set_symmetric_difference.py Modify set tests to print sorted sets directly 2014-04-07 05:00:03 +01:00
set_union.py
set_unop.py
set_update.py
setattr1.py
slice_attrs.py
slice_bignum.py
slots_bool_len.py
special_methods.py
string1.py
string_center.py
string_compare.py
string_count.py
string_cr_conversion.py
string_crlf_conversion.py
string_endswith.py
string_escape.py tests: Rename test scripts, changing - to _ for consistency. 2014-07-05 06:14:29 +01:00
string_find.py
string_format.py
string_format2.py
string_format_error.py
string_format_modulo.py
string_index.py
string_istest.py add methods isspace(), isalpha(), isdigit(), isupper() and islower() to str 2014-05-31 07:30:57 +01:00
string_join.py
string_large.py
string_mult.py py: Fix mult by negative number of tuple, list, str, bytes. 2014-08-13 13:22:24 +01:00
string_partition.py
string_replace.py
string_repr.py
string_rfind.py
string_rindex.py
string_rpartition.py
string_rsplit.py
string_slice.py
string_split.py
string_splitlines.py
string_startswith.py
string_strip.py
string_upperlow.py
struct1.py
struct2.py
subclass_classmethod.py py: Fix calling of parent classmethod from instance of subclass. 2015-12-09 17:30:01 +00:00
subclass_native1.py tests: Add more tests to improve coverage, mostly testing exceptions. 2015-08-21 12:02:09 +01:00
subclass_native2_list.py
subclass_native2_tuple.py
subclass_native3.py
subclass_native4.py
subclass_native5.py
subclass_native_buffer.py
subclass_native_cmp.py
subclass_native_specmeth.py
syntaxerror.py
sys1.py tests: Allow tests to pass against CPython 3.5. 2015-10-02 13:01:47 +01:00
true_value.py
try1.py
try2.py tests: Add tests to improve coverage of runtime.c. 2016-12-21 15:44:41 +11:00
try3.py
try4.py
try_as_var.py
try_continue.py
try_error.py
try_finally1.py
try_finally2.py
try_finally_loops.py
try_finally_return.py
try_finally_return2.py
try_reraise.py
try_reraise2.py
tuple1.py
tuple_compare.py
tuple_count.py
tuple_index.py
tuple_mult.py
types1.py
types2.py
unary_op.py
unboundlocal.py
unpack1.py
while1.py Move tests in basic/tests/ up one level preparating to multiple test dirs. 2014-01-19 18:41:55 +02:00
while_cond.py
while_nest_exc.py
with1.py
with_break.py
with_continue.py tests: Rename test scripts, changing - to _ for consistency. 2014-07-05 06:14:29 +01:00
with_return.py py: Fix with+for+return bug by popping for-iter when unwinding exc stack. 2015-10-15 17:48:28 +01:00
zip.py