diff tests/test_configuration.py @ 3:f485ba500df3

Gigantic change to basically make PieCrust 2 vaguely functional. - Serving works, with debug window. - Baking works, multi-threading, with dependency handling. - Various things not implemented yet.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 10 Aug 2014 23:43:16 -0700
parents 40fa08b261b9
children 563ce5dd02af
line wrap: on
line diff
--- a/tests/test_configuration.py	Wed Dec 25 22:16:46 2013 -0800
+++ b/tests/test_configuration.py	Sun Aug 10 23:43:16 2014 -0700
@@ -14,7 +14,7 @@
 
 def test_config_set_all():
     config = Configuration()
-    config.set_all({'foo': 'bar'})
+    config.setAll({'foo': 'bar'})
     assert config.get() == {'foo': 'bar'}
 
 
@@ -103,4 +103,3 @@
             }
     assert config.get() == expected
 
-