diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-12-04 19:07:57 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-12-04 19:07:57 -0500 |
commit | 4d3e396ce91dd70b0c9d7f3b1e991fd8ebd0d582 (patch) | |
tree | acc360400de06cae7193250c7caef5c77c7b29a3 | |
parent | 176054363582b08aaf93bb4fcc0f26521c0f884c (diff) | |
download | dimension-4d3e396ce91dd70b0c9d7f3b1e991fd8ebd0d582.tar.xz |
Rename complex test to cube test.
-rw-r--r-- | dimension/tests/Makefile.am | 4 | ||||
-rw-r--r-- | dimension/tests/cube.dmnsn (renamed from dimension/tests/complex.dmnsn) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dimension/tests/Makefile.am b/dimension/tests/Makefile.am index fe224fa..684b2aa 100644 --- a/dimension/tests/Makefile.am +++ b/dimension/tests/Makefile.am @@ -18,10 +18,10 @@ ########################################################################### TESTS = demo.dmnsn \ - complex.dmnsn + cube.dmnsn TEST_EXTENSIONS = .dmnsn DMNSN_LOG_COMPILER = $(top_srcdir)/dimension/dimension -AM_DMNSN_LOG_FLAGS = --strict +AM_DMNSN_LOG_FLAGS = --strict -v TESTS_ENVIRONMENT = PYTHONPATH=$(abs_top_builddir) EXTRA_DIST = $(TESTS) diff --git a/dimension/tests/complex.dmnsn b/dimension/tests/cube.dmnsn index a5a3ec2..22c926d 100644 --- a/dimension/tests/complex.dmnsn +++ b/dimension/tests/cube.dmnsn @@ -56,7 +56,7 @@ def make_sphere(x, y, z, size): pigment = sRGB(x/size, y/size, z/size), finish = Ambient(sRGB(0.25)) + Diffuse(sRGB(0.8)) - + Reflection(0, sRGB(0.5)) + + Reflection(0, 0.25) ) ) |