diff options
| author | Chris McDonough <chrism@plope.com> | 2011-03-28 07:05:30 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-03-28 07:05:30 -0400 |
| commit | 2b701d9f3a6d6bc3bb5c54ed035b1cd353dc9203 (patch) | |
| tree | 1cbca1f5250c4e6032652533d72df4b7859d9c29 | |
| parent | d929583f7a850a5f82989b60e6ed51cb887801d9 (diff) | |
| download | pyramid-2b701d9f3a6d6bc3bb5c54ed035b1cd353dc9203.tar.gz pyramid-2b701d9f3a6d6bc3bb5c54ed035b1cd353dc9203.tar.bz2 pyramid-2b701d9f3a6d6bc3bb5c54ed035b1cd353dc9203.zip | |
branch coverage
| -rw-r--r-- | pyramid/tests/test_configuration.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyramid/tests/test_configuration.py b/pyramid/tests/test_configuration.py index 786c7539b..688a597f6 100644 --- a/pyramid/tests/test_configuration.py +++ b/pyramid/tests/test_configuration.py @@ -17,5 +17,9 @@ class ConfiguratorTests(unittest.TestCase): config = self._makeOne() self.assertEqual(config.autocommit, True) + def test_package_is_not_None(self): + import pyramid + config = self._makeOne(package='pyramid') + self.assertEqual(config.package, pyramid) |
