From 003a5cb93ef1c1dc4a183013f5b462a155eefee3 Mon Sep 17 00:00:00 2001 From: Filipe David Manana Date: Sat, 26 Mar 2011 02:07:42 +0000 Subject: [PATCH] Renamed tests --- test/snappy_tests.erl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/snappy_tests.erl b/test/snappy_tests.erl index 44a9779..a1f6973 100644 --- a/test/snappy_tests.erl +++ b/test/snappy_tests.erl @@ -17,14 +17,14 @@ -include_lib("eunit/include/eunit.hrl"). -compress_test_() -> - {timeout, 60, [fun run_compress_test/0]}. +compression_test_() -> + {timeout, 60, [fun compression/0]}. -uncompress_test_() -> - {timeout, 60, [fun run_uncompress_test/0]}. +decompression_test_() -> + {timeout, 60, [fun decompression/0]}. -run_compress_test() -> +compression() -> Data = iolist_to_binary( lists:duplicate(11, <<"words that go unspoken, deeds that go undone">>)), Result = snappy:compress(Data), @@ -41,7 +41,7 @@ run_compress_test() -> ok. -run_uncompress_test() -> +decompression() -> Data = iolist_to_binary( lists:duplicate(11, <<"words that go unspoken, deeds that go undone">>)), Result = snappy:compress(Data),