コード例 #1
0
ファイル: test_tag.py プロジェクト: 50onRed/python-intercom
    def test_accessor(self):
        tag = Tag()

        tag.name = "xyz"
        eq_("xyz", tag.name)

        tag.color = "abc"
        eq_("abc", tag.color)
コード例 #2
0
ファイル: test_tag.py プロジェクト: 50onRed/python-intercom
    def test_accessor(self):
        tag = Tag()

        tag.name = "xyz"
        eq_("xyz", tag.name)

        tag.color = "abc"
        eq_("abc", tag.color)
コード例 #3
0
ファイル: test_tag.py プロジェクト: uservidya/python-intercom
    def test_accessor(self):
        tag = Tag()

        tag.name = "xyz"
        eq_("xyz", tag.name)
コード例 #4
0
ファイル: test_tag.py プロジェクト: spang/python-intercom
def test_accessor():
    tag = Tag()
    tag.name = "xyz"
    eq_(tag.name, "xyz")