Exemplo n.º 1
0
    def test_is_userspace(self):
        subject = Organization()
        subject.name = '~username'

        self.assertIs(True, subject.is_user_space())
Exemplo n.º 2
0
    def test_not_is_userspace(self):
        subject = Organization()
        subject.name = 'Organization'

        self.assertIs(False, subject.is_user_space())