summaryrefslogtreecommitdiff
path: root/test/test_app.py
blob: bc4acc543e65d4c9b99d479d9d8ba3b5b07c8e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
""" Tests for the functionality of the application object.

    TODO: Move other tests here.
""" 

import unittest
from bottle import Bottle

class TestApplicationObject(unittest.TestCase):
    
    def test_setattr(self):
        """ Attributed can be assigned, but only once. """
        app = Bottle()
        app.test = 5
        self.assertEquals(5, app.test)
        self.assertRaises(AttributeError, setattr, app, 'test', 6) 
        del app.test
        app.test = 6
        self.assertEquals(6, app.test)